From 0ca7a78f20db6f34bf158f671fc5bbc32ee5702c Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Mon, 23 Apr 2018 14:53:54 +0200 Subject: Depsgraph: Fix missing update with animated curve path --- source/blender/depsgraph/intern/depsgraph.cc | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source/blender/depsgraph') diff --git a/source/blender/depsgraph/intern/depsgraph.cc b/source/blender/depsgraph/intern/depsgraph.cc index da7ac03146e..34fb20ee2ba 100644 --- a/source/blender/depsgraph/intern/depsgraph.cc +++ b/source/blender/depsgraph/intern/depsgraph.cc @@ -214,6 +214,11 @@ static bool pointer_to_component_node_criteria( *subdata = seq->name; // xxx? return true; } + else if (ptr->type == &RNA_Curve) { + *id = (ID *)ptr->id.data; + *type = DEG_NODE_TYPE_GEOMETRY; + return true; + } if (prop != NULL) { /* All unknown data effectively falls under "parameter evaluation". */ if (RNA_property_is_idprop(prop)) { -- cgit v1.2.3