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 <brecht@blender.org>2021-06-25 19:29:17 +0300
committerBrecht Van Lommel <brecht@blender.org>2021-06-25 19:47:54 +0300
commit23042a3fb189620a6d908ced1af98b10ad2f8afd (patch)
tree6a9127339a27255d5a04909245d174e821b74613 /intern/cycles/blender/addon
parentf863ef8a34d44e8cc26a53bd91ee6a4f99efb107 (diff)
Cycles: add view layer option to disable motion blur, in the Filter panel
Diffstat (limited to 'intern/cycles/blender/addon')
-rw-r--r--intern/cycles/blender/addon/ui.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/intern/cycles/blender/addon/ui.py b/intern/cycles/blender/addon/ui.py
index ce93bd96bd5..62a2fa7f036 100644
--- a/intern/cycles/blender/addon/ui.py
+++ b/intern/cycles/blender/addon/ui.py
@@ -821,6 +821,11 @@ class CYCLES_RENDER_PT_filter(CyclesButtonsPanel, Panel):
col.prop(view_layer, "use_strand", text="Hair")
col.prop(view_layer, "use_volumes", text="Volumes")
+ col = layout.column(heading="Use")
+ sub = col.row()
+ sub.prop(view_layer, "use_motion_blur", text="Motion Blur")
+ sub.active = rd.use_motion_blur
+
class CYCLES_RENDER_PT_override(CyclesButtonsPanel, Panel):
bl_label = "Override"