Refactor GDK platform settings and tools, expose more options MicrosoftGame.config

This commit is contained in:
Wojtek Figat
2021-08-30 16:14:52 +02:00
parent 5d321c8c0c
commit 98776a709e
8 changed files with 480 additions and 5 deletions

View File

@@ -366,6 +366,8 @@ namespace FlaxEditor.Content.Settings
return SaveAsset(gameSettings, ref gameSettings.LinuxPlatform, obj);
if (type.FullName == PS4PlatformSettingsTypename)
return SaveAsset(gameSettings, ref gameSettings.PS4Platform, obj);
if (type.FullName == XboxOnePlatformSettingsTypename)
return SaveAsset(gameSettings, ref gameSettings.XboxOnePlatform, obj);
if (type.FullName == XboxScarlettPlatformSettingsTypename)
return SaveAsset(gameSettings, ref gameSettings.XboxScarlettPlatform, obj);
if (type == typeof(AndroidPlatformSettings))