From 46b912a481b61365263068dc28abcd93b595da36 Mon Sep 17 00:00:00 2001 From: AzaezelX Date: Sun, 22 Mar 2026 11:47:20 -0500 Subject: [PATCH] ssao typofix hat tip: steve_yorkshire- https://discord.com/channels/358091480004558848/783127087820439582/1485316295888077020 --- .../BaseGame/game/core/postFX/scripts/SSAO/SSAOPostFx.tscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Templates/BaseGame/game/core/postFX/scripts/SSAO/SSAOPostFx.tscript b/Templates/BaseGame/game/core/postFX/scripts/SSAO/SSAOPostFx.tscript index c9a5bec3c..602243639 100644 --- a/Templates/BaseGame/game/core/postFX/scripts/SSAO/SSAOPostFx.tscript +++ b/Templates/BaseGame/game/core/postFX/scripts/SSAO/SSAOPostFx.tscript @@ -173,7 +173,7 @@ function PostEffectEditorInspector::toggleSSAOPostFx(%this) function SSAOPostFx::applyFromPreset(%this) { - if($PostFXManager::PostFX::Enable && $pref::PostFX::EnableSSAO) + if($PostFX::SSAOPostFx::Enabled && $pref::PostFX::EnableSSAO) %this.enable(); else %this.disable();