[Bf-blender-cvs] [d25ccf83ad5] master: Fix T51978: Setup Tracking Scene after Motion Tracking fails the first time

Sergey Sharybin noreply at git.blender.org
Fri Jul 7 09:37:33 CEST 2017


Commit: d25ccf83ad562b43f918aa88e7d63760f2ebbad5
Author: Sergey Sharybin
Date:   Fri Jul 7 09:36:25 2017 +0200
Branches: master
https://developer.blender.org/rBd25ccf83ad562b43f918aa88e7d63760f2ebbad5

Fix T51978: Setup Tracking Scene after Motion Tracking fails the first time

===================================================================

M	release/scripts/startup/bl_operators/clip.py

===================================================================

diff --git a/release/scripts/startup/bl_operators/clip.py b/release/scripts/startup/bl_operators/clip.py
index e52d577b900..d8ef9e1f3ef 100644
--- a/release/scripts/startup/bl_operators/clip.py
+++ b/release/scripts/startup/bl_operators/clip.py
@@ -782,8 +782,8 @@ class CLIP_OT_setup_tracking_scene(Operator):
         tree.links.new(mul_shadow.outputs["Image"], mul_image.inputs[2])
 
         tree.links.new(rlayer_fg.outputs["Image"], vector_blur.inputs["Image"])
-        tree.links.new(rlayer_fg.outputs["Z"], vector_blur.inputs["Z"])
-        tree.links.new(rlayer_fg.outputs["Speed"], vector_blur.inputs["Speed"])
+        tree.links.new(rlayer_fg.outputs["Depth"], vector_blur.inputs["Z"])
+        tree.links.new(rlayer_fg.outputs["Vector"], vector_blur.inputs["Speed"])
 
         tree.links.new(mul_image.outputs["Image"], alphaover.inputs[1])
         tree.links.new(vector_blur.outputs["Image"], alphaover.inputs[2])




More information about the Bf-blender-cvs mailing list