diff --git a/Source/Editor/GUI/PlatformSelector.cs b/Source/Editor/GUI/PlatformSelector.cs index 3b1b85e90..9c43bbf63 100644 --- a/Source/Editor/GUI/PlatformSelector.cs +++ b/Source/Editor/GUI/PlatformSelector.cs @@ -84,7 +84,6 @@ namespace FlaxEditor.GUI { new PlatformData(PlatformType.Windows, icons.WindowsIcon128, "Windows"), new PlatformData(PlatformType.XboxOne, icons.XBoxOne128, "Xbox One"), - new PlatformData(PlatformType.UWP, icons.UWPStore128, "Windows Store"), new PlatformData(PlatformType.Linux, icons.LinuxIcon128, "Linux"), new PlatformData(PlatformType.PS4, icons.PS4Icon128, "PlayStation 4"), new PlatformData(PlatformType.XboxScarlett, icons.XBoxScarletIcon128, "Xbox Scarlett"), diff --git a/Source/Editor/Windows/GameCookerWindow.cs b/Source/Editor/Windows/GameCookerWindow.cs index bfbbad0ac..92575e9e5 100644 --- a/Source/Editor/Windows/GameCookerWindow.cs +++ b/Source/Editor/Windows/GameCookerWindow.cs @@ -43,7 +43,6 @@ namespace FlaxEditor.Windows { { PlatformType.Windows, new Windows() }, { PlatformType.XboxOne, new XboxOne() }, - { PlatformType.UWP, new UWP() }, { PlatformType.Linux, new Linux() }, { PlatformType.PS4, new PS4() }, { PlatformType.XboxScarlett, new XboxScarlett() }, @@ -164,8 +163,6 @@ namespace FlaxEditor.Windows #if PLATFORM_WINDOWS case BuildPlatform.Windows32: case BuildPlatform.Windows64: - case BuildPlatform.UWPx86: - case BuildPlatform.UWPx64: case BuildPlatform.LinuxX64: case BuildPlatform.AndroidARM64: case BuildPlatform.Web: @@ -215,11 +212,6 @@ namespace FlaxEditor.Windows protected override BuildPlatform BuildPlatform => BuildPlatform.Windows64; } - class UWP : Platform - { - protected override BuildPlatform BuildPlatform => BuildPlatform.UWPx64; - } - class XboxOne : Platform { protected override BuildPlatform BuildPlatform => BuildPlatform.XboxOne; @@ -573,10 +565,6 @@ namespace FlaxEditor.Windows case PlatformType.XboxOne: name = "Xbox One"; break; - case PlatformType.UWP: - name = "Windows Store"; - layout.Label("UWP (Windows Store) platform has been deprecated and is no longer supported", TextAlignment.Center).Label.TextColor = Color.Red; - break; case PlatformType.Linux: name = "Linux"; break;