Depsgraph: Fix missing update with animated curve path

This commit is contained in:
Sergey Sharybin
2018-04-23 14:53:54 +02:00
parent 41cf2d9042
commit 0ca7a78f20

View File

@@ -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)) {