From 6ee181ec2446fce3f61ed3a187ea08f50db82ca2 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 19 Oct 2021 12:39:19 +0200 Subject: [PATCH] Cycles: improve sampling pattern description regarding adaptive sampling --- intern/cycles/blender/addon/properties.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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', )