[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [38293] trunk/blender/source/blender/ blenkernel/intern/depsgraph.c: Fix for [#27398] Particle systems with animated groups render incorrectly in viewport

Janne Karhu jhkarh at gmail.com
Mon Jul 11 01:50:00 CEST 2011


Revision: 38293
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=38293
Author:   jhk
Date:     2011-07-10 23:49:59 +0000 (Sun, 10 Jul 2011)
Log Message:
-----------
Fix for [#27398] Particle systems with animated groups render incorrectly in viewport
* Hmph.. depsgraph and group duplication == illogical.

Modified Paths:
--------------
    trunk/blender/source/blender/blenkernel/intern/depsgraph.c

Modified: trunk/blender/source/blender/blenkernel/intern/depsgraph.c
===================================================================
--- trunk/blender/source/blender/blenkernel/intern/depsgraph.c	2011-07-10 23:24:15 UTC (rev 38292)
+++ trunk/blender/source/blender/blenkernel/intern/depsgraph.c	2011-07-10 23:49:59 UTC (rev 38293)
@@ -599,7 +599,7 @@
 			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");
 				}
 			}
 




More information about the Bf-blender-cvs mailing list