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:
Sergey Sharybin 2017-07-20 15:15:25 +02:00
parent 84a87bf45a
commit 905366ca7e
Notes: blender-bot 2023-02-14 06:46:27 +01:00
Referenced by issue #52127, Combed hair from 2.78 not showing when appending
1 changed files with 4 additions and 0 deletions

View File

@ -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);
}