diff --git a/Source/Engine/Core/Math/Mathd.cs b/Source/Engine/Core/Math/Mathd.cs
index f200b8865..29bcc9420 100644
--- a/Source/Engine/Core/Math/Mathd.cs
+++ b/Source/Engine/Core/Math/Mathd.cs
@@ -652,6 +652,8 @@ namespace FlaxEngine
/// The destination range minimum value.
/// The destination range maximum value.
/// The mapped value in range [toMin; toMax].
+ // [Deprecated on 17.04.2023, expires on 17.04.2024]
+ [Obsolete("Please use Remap to upkeep the API consistency")]
public static double Map(double value, double fromMin, double fromMax, double toMin, double toMax)
{
double t = (value - fromMin) / (fromMax - fromMin);
diff --git a/Source/Engine/Core/Math/Mathf.cs b/Source/Engine/Core/Math/Mathf.cs
index b0411133b..9463c13cb 100644
--- a/Source/Engine/Core/Math/Mathf.cs
+++ b/Source/Engine/Core/Math/Mathf.cs
@@ -815,6 +815,8 @@ namespace FlaxEngine
/// The destination range minimum value.
/// The destination range maximum value.
/// The mapped value in range [toMin; toMax].
+ // [Deprecated on 17.04.2023, expires on 17.04.2024]
+ [Obsolete("Please use Remap to upkeep the API consistency")]
public static float Map(float value, float fromMin, float fromMax, float toMin, float toMax)
{
float t = (value - fromMin) / (fromMax - fromMin);