Fix/workaround T52127: Combed hair from 2.78 not showing when appending
Quick solution to prevent particle components from being tagged for complete re-evaluaiton.
This commit is contained in:
@@ -259,6 +259,10 @@ void IDDepsNode::tag_update(Depsgraph *graph)
|
||||
do_component_tag = false;
|
||||
}
|
||||
}
|
||||
else if (comp_node->type == DEG_NODE_TYPE_EVAL_PARTICLES) {
|
||||
/* Only do explicit particle settings tagging. */
|
||||
do_component_tag = false;
|
||||
}
|
||||
if (do_component_tag) {
|
||||
comp_node->tag_update(graph);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user