Cycles: change Scrambling Distance Multiplier to a soft limit

This allows users to type in values larger than 1, for use in conjunction
with automatic scrambling distance.

Contributed by Alaska.

Differential Revision: https://developer.blender.org/D13580
This commit is contained in:
Brecht Van Lommel 2022-03-15 16:06:57 +01:00
parent af51b0d8d8
commit f9d3632cde
1 changed files with 1 additions and 1 deletions

View File

@ -348,7 +348,7 @@ class CyclesRenderSettings(bpy.types.PropertyGroup):
scrambling_distance: FloatProperty(
name="Scrambling Distance",
default=1.0,
min=0.0, max=1.0,
min=0.0, soft_max=1.0,
description="Reduce randomization between pixels to improve GPU rendering performance, at the cost of possible rendering artifacts if set too low. Only works when not using adaptive sampling",
)
preview_scrambling_distance: BoolProperty(