Created DefaultGameUserSettings.ini to set the default screen mode to Windowed. #37

Open
blaflamme87 wants to merge 2 commits from brian.performance-fixes into main
2 changed files with 9 additions and 1 deletions

View File

@ -0,0 +1,8 @@
[/Script/Engine.GameUserSettings]
Version=5
FullscreenMode=2
LastConfirmedFullscreenMode=2
ResolutionSizeX=1280
ResolutionSizeY=720
LastUserConfirmedResolutionSizeX=1280
LastUserConfirmedResolutionSizeY=720

View File

@ -20,7 +20,7 @@ void UMainScreenUserWidget::NativeConstruct()
if (GameInstance)
{
GameInstance->bIsFirstOpenGame = false;
GameInstance->DoResolutionChange(bIsFullScreen);
//GameInstance->DoResolutionChange(bIsFullScreen);
GameInstance->OnMessageDispatched.AddDynamic(this, &UMainScreenUserWidget::OnMessageDispatchedHandler);
}