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:
authorTon Roosendaal <ton@blender.org>2006-04-09 20:43:03 +0400
committerTon Roosendaal <ton@blender.org>2006-04-09 20:43:03 +0400
commit5dd21d368fc0d22c4f577597a900764b9f1df46d (patch)
tree6fc9a5233ae615405b208e100f01cee651c6253d
parenta64c9f7a6a2ca582521c328b082565ad700fc7f4 (diff)
Bugfix #3860
Ipo Driver on a curve-path speed Ipo was not assigned yet to dependency graph, so it appeared as if it didnt work.
-rw-r--r--source/blender/blenkernel/intern/depsgraph.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/depsgraph.c b/source/blender/blenkernel/intern/depsgraph.c
index d63e0b2b9d7..b6a85bbe910 100644
--- a/source/blender/blenkernel/intern/depsgraph.c
+++ b/source/blender/blenkernel/intern/depsgraph.c
@@ -453,6 +453,9 @@ static void build_dag_object(DagForest *dag, DagNode *scenenode, Object *ob, int
node2 = dag_get_node(dag, cu->taperobj);
dag_add_relation(dag,node2,node,DAG_RL_DATA_DATA|DAG_RL_OB_DATA);
}
+ if(cu->ipo)
+ dag_add_driver_relation(cu->ipo, dag, node, 1);
+
}
else if(ob->type==OB_FONT) {
Curve *cu= ob->data;