Merge pull request #880 from Areloch/FullscreenFix_and_BloomPref

Fullscreen 'Fix' and Bloom Pref
This commit is contained in:
Brian Roberts 2022-09-04 09:05:17 -05:00 committed by GitHub
commit 70081f01b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 17 additions and 4 deletions

View file

@ -538,6 +538,12 @@ function updateGraphicsSettings()
DecalLifetimeGroup.applySetting($pref::Graphics::DecalLifetime);
if($pref::Graphics::GroundCoverDensity !$= getCurrentQualityLevel(GroundCoverDensityGroup))
GroundCoverDensityGroup.applySetting($pref::Graphics::GroundCoverDensity);
if($pref::Graphics::ShaderQuality !$= getCurrentQualityLevel(ShaderQualityGroup))
{
ShaderQualityGroup.applySetting($pref::Graphics::ShaderQuality);
//this has ties into postFX behaviors, so we'll force an update to it here
updatePostFXSettings();
}
}
function updateDisplaySettings()

View file

@ -207,4 +207,6 @@ $PostFXManager::Settings::EnableDOF = 1;
$pref::PostFX::EnableVignette = 1;
$pref::PostFX::EnableLightRays = 1;
$pref::PostFX::EnableHDR = 1;
$pref::PostFX::EnableSSAO = 1;
$pref::PostFX::EnableSSAO = 1;
$pref::PostFX::EnableHDRBloom = 1;