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 <brechtvanlommel@gmail.com>2018-09-28 19:22:35 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-09-28 19:24:19 +0300
commit637d938c0b8431f3f44ff89ad899b4f1237d167e (patch)
tree7a19e22d902a9e4b28d96b4e62c71a0e2c62e047 /intern
parent62aee662ae01da8593a8c9b0cc81b0a418f299fe (diff)
Fix T56396: Cycles wrong object motion blur with deformation blur disabled.
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/blender/blender_object.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/blender/blender_object.cpp b/intern/cycles/blender/blender_object.cpp
index a1f39d0848f..408a92f1f3a 100644
--- a/intern/cycles/blender/blender_object.cpp
+++ b/intern/cycles/blender/blender_object.cpp
@@ -444,8 +444,8 @@ Object *BlenderSync::sync_object(BL::Depsgraph& b_depsgraph,
if(scene->need_motion() == Scene::MOTION_BLUR) {
motion_steps = object_motion_steps(b_parent, b_ob);
+ mesh->motion_steps = motion_steps;
if(motion_steps && object_use_deform_motion(b_parent, b_ob)) {
- mesh->motion_steps = motion_steps;
mesh->use_motion_blur = true;
}
}