Fix for [#27398] Particle systems with animated groups render incorrectly in viewport

* Hmph.. depsgraph and group duplication == illogical.
This commit is contained in:
2011-07-10 23:49:59 +00:00
parent 2ebc5cbe75
commit 897cbe4b42

View File

@@ -599,7 +599,7 @@ static void build_dag_object(DagForest *dag, DagNode *scenenode, Scene *scene, O
if(part->ren_as == PART_DRAW_GR && part->dup_group) {
for(go=part->dup_group->gobject.first; go; go=go->next) {
node2 = dag_get_node(dag, go->ob);
dag_add_relation(dag, node, node2, DAG_RL_OB_OB, "Particle Group Visualisation");
dag_add_relation(dag, node2, node, DAG_RL_OB_OB, "Particle Group Visualisation");
}
}