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:
authorWilliam Reynish <billrey@me.com>2019-02-20 20:02:26 +0300
committerWilliam Reynish <billrey@me.com>2019-02-20 20:02:26 +0300
commit3f65cad5aedef8e413140c77cd5c91d8e66af524 (patch)
tree632fa00b75d4d9ac2330e7edb26cbfacb68ad76c /intern
parent27c72e22aa41e13cb94bb3e5f9a59b960ba5aa09 (diff)
Units: Use pixels for denoising radius property, and set Cycles motion blur duration to factor.
Also fix own mistake of using of spaces instead of tabs in RNA.
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/blender/addon/properties.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/intern/cycles/blender/addon/properties.py b/intern/cycles/blender/addon/properties.py
index 1ced509221c..11f75b668a9 100644
--- a/intern/cycles/blender/addon/properties.py
+++ b/intern/cycles/blender/addon/properties.py
@@ -644,6 +644,7 @@ class CyclesRenderSettings(bpy.types.PropertyGroup):
description="Scanline \"exposure\" time for the rolling shutter effect",
default=0.1,
min=0.0, max=1.0,
+ subtype='FACTOR',
)
texture_limit: EnumProperty(
@@ -1343,6 +1344,7 @@ class CyclesRenderLayerSettings(bpy.types.PropertyGroup):
description="Size of the image area that's used to denoise a pixel (higher values are smoother, but might lose detail and are slower)",
min=1, max=25,
default=8,
+ subtype="PIXEL",
)
denoising_relative_pca: BoolProperty(
name="Relative filter",