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
path: root/intern
diff options
context:
space:
mode:
authorBrecht Van Lommel <brecht@blender.org>2021-10-19 13:39:19 +0300
committerBrecht Van Lommel <brecht@blender.org>2021-10-19 13:59:05 +0300
commit6ee181ec2446fce3f61ed3a187ea08f50db82ca2 (patch)
tree7162ee3ddb8c2cc7765c85a7207fa10a9830fb8f /intern
parenta395a1b36b9f2dfb32408a1150844312ab62b0b3 (diff)
Cycles: improve sampling pattern description regarding adaptive sampling
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/blender/addon/properties.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/blender/addon/properties.py b/intern/cycles/blender/addon/properties.py
index faa0aaec8ae..7ac59cf563e 100644
--- a/intern/cycles/blender/addon/properties.py
+++ b/intern/cycles/blender/addon/properties.py
@@ -332,7 +332,7 @@ class CyclesRenderSettings(bpy.types.PropertyGroup):
sampling_pattern: EnumProperty(
name="Sampling Pattern",
- description="Random sampling pattern used by the integrator",
+ description="Random sampling pattern used by the integrator. When adaptive sampling is enabled, Progressive Multi-Jitter is always used instead of Sobol",
items=enum_sampling_pattern,
default='PROGRESSIVE_MUTI_JITTER',
)