From b85d58db85c86026bf4269f7de505e4ed5eaaafa Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Sat, 3 Dec 2022 13:17:24 +0100 Subject: [PATCH] Mark UWP platform as deprecated --- Source/Editor/Cooker/Platform/UWP/UWPPlatformTools.cpp | 2 ++ Source/Editor/Windows/GameCookerWindow.cs | 1 + 2 files changed, 3 insertions(+) diff --git a/Source/Editor/Cooker/Platform/UWP/UWPPlatformTools.cpp b/Source/Editor/Cooker/Platform/UWP/UWPPlatformTools.cpp index f9331dc66..01f8a1a83 100644 --- a/Source/Editor/Cooker/Platform/UWP/UWPPlatformTools.cpp +++ b/Source/Editor/Cooker/Platform/UWP/UWPPlatformTools.cpp @@ -497,6 +497,8 @@ bool UWPPlatformTools::OnPerformAOT(CookingData& data, AotConfig& config, const bool UWPPlatformTools::OnPostProcess(CookingData& data) { + LOG(Error, "UWP (Windows Store) platform has been deprecated and soon will be removed!"); + // Special case for UWP // FlaxEngine.dll cannot be added to the solution as `Content` item (due to conflicts with C++ /CX FlaxEngine.dll) // Use special directory for it (generated UWP project handles this case and copies lib to the output) diff --git a/Source/Editor/Windows/GameCookerWindow.cs b/Source/Editor/Windows/GameCookerWindow.cs index e2fb99464..89dec1c4e 100644 --- a/Source/Editor/Windows/GameCookerWindow.cs +++ b/Source/Editor/Windows/GameCookerWindow.cs @@ -257,6 +257,7 @@ namespace FlaxEditor.Windows break; case PlatformType.UWP: name = "Windows Store"; + layout.Label("UWP (Windows Store) platform has been deprecated and soon will be removed!", TextAlignment.Center).Label.TextColor = Color.Red; break; case PlatformType.Linux: name = "Linux";