Remove deprecated UWP platform from Game Cooker window
This commit is contained in:
@@ -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"),
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user