Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2020-03-07 14:23:09 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2020-03-07 14:40:06 +0300
commit946d39f688342bf797c1939f6dd1d005dffb540e (patch)
tree1999ab52099a28b9c6946a32307779426d63ac13 /intern/cycles/blender/addon/properties.py
parent8a5a306a8313d48afaa276ff57ae5d0c2ac2728a (diff)
UI: move Cycles adaptive sampling settings to own subpanel
Diffstat (limited to 'intern/cycles/blender/addon/properties.py')
-rw-r--r--intern/cycles/blender/addon/properties.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/intern/cycles/blender/addon/properties.py b/intern/cycles/blender/addon/properties.py
index f2c40f509e8..1a93a603e23 100644
--- a/intern/cycles/blender/addon/properties.py
+++ b/intern/cycles/blender/addon/properties.py
@@ -351,19 +351,20 @@ class CyclesRenderSettings(bpy.types.PropertyGroup):
)
use_adaptive_sampling: BoolProperty(
- name="Use adaptive sampling",
- description="Automatically determine the number of samples per pixel based on a variance estimation",
+ name="Use Adaptive Sampling",
+ description="Automatically reduce the number of samples per pixel based on estimated noise level",
default=False,
)
+
adaptive_threshold: FloatProperty(
name="Adaptive Sampling Threshold",
- description="Zero for automatic setting based on AA samples",
+ description="Noise level step to stop sampling at, lower values reduce noise the cost of render time. Zero for automatic setting based on number of AA samples",
min=0.0, max=1.0,
default=0.0,
)
adaptive_min_samples: IntProperty(
name="Adaptive Min Samples",
- description="Minimum AA samples for adaptive sampling. Zero for automatic setting based on AA samples",
+ description="Minimum AA samples for adaptive sampling, to discover noisy features before stopping sampling. Zero for automatic setting based on number of AA samples",
min=0, max=4096,
default=0,
)