From feb65ef9b35d2618811d5aab5270f2383ce31f24 Mon Sep 17 00:00:00 2001 From: Nico de Poel Date: Mon, 6 Mar 2023 11:45:00 +0100 Subject: [PATCH] Enable auto-exposure by default, which is what the FSR2 docs recommend. --- Assets/Scripts/Fsr2Controller.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/Fsr2Controller.cs b/Assets/Scripts/Fsr2Controller.cs index 04f98da..6c8cfdd 100644 --- a/Assets/Scripts/Fsr2Controller.cs +++ b/Assets/Scripts/Fsr2Controller.cs @@ -18,7 +18,7 @@ namespace FidelityFX public bool performSharpenPass = true; [Range(0, 1)] public float sharpness = 0.8f; - public bool enableAutoExposure = false; + public bool enableAutoExposure = true; [Tooltip("Allow the use of half precision compute operations, potentially improving performance")] public bool enableFP16 = false;