Skip to content
This repository was archived by the owner on Nov 30, 2020. It is now read-only.

Commit d421ce9

Browse files
committed
TAA parameters range tweaking
1 parent d0f7597 commit d421ce9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PostProcessing/Runtime/Models/AntialiasingModel.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,11 +182,11 @@ public struct TaaSettings
182182
public float sharpen;
183183

184184
[Tooltip("The blend coefficient for a stationary fragment. Controls the percentage of history sample blended into the final color.")]
185-
[Range(0f, 1f)]
185+
[Range(0f, 0.99f)]
186186
public float stationaryBlending;
187187

188188
[Tooltip("The blend coefficient for a fragment with significant motion. Controls the percentage of history sample blended into the final color.")]
189-
[Range(0f, 1f)]
189+
[Range(0f, 0.99f)]
190190
public float motionBlending;
191191

192192
public static TaaSettings defaultSettings

0 commit comments

Comments
 (0)