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 01/11] [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 OptionsInstall 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 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 02/11] 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 03/11] 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 04/11] 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 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 05/11] 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 - hoverCreated 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 - hoverCreated 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 - hoverCreated 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 - hoverCreated 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 @@
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 06/11] 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 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 07/11] [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 08/11] [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 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 09/11] 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