[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [32196] branches/particles-2010/source/ blender/nodes/intern/simulation/nodes/SIM_get_data.c: bugfix in GetData node: all data sockets used the first sockets rna property.

Lukas Toenne lukas.toenne at googlemail.com
Wed Sep 29 20:29:31 CEST 2010


Revision: 32196
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=32196
Author:   lukastoenne
Date:     2010-09-29 20:29:30 +0200 (Wed, 29 Sep 2010)

Log Message:
-----------
bugfix in GetData node: all data sockets used the first sockets rna property.

Modified Paths:
--------------
    branches/particles-2010/source/blender/nodes/intern/simulation/nodes/SIM_get_data.c

Modified: branches/particles-2010/source/blender/nodes/intern/simulation/nodes/SIM_get_data.c
===================================================================
--- branches/particles-2010/source/blender/nodes/intern/simulation/nodes/SIM_get_data.c	2010-09-29 18:26:09 UTC (rev 32195)
+++ branches/particles-2010/source/blender/nodes/intern/simulation/nodes/SIM_get_data.c	2010-09-29 18:29:30 UTC (rev 32196)
@@ -324,6 +324,7 @@
 		for (i=1; i < node->totout; ++i) {
 			enqueue_output(execdata, node, node->outstack + i, &ctx, ((NodeSocketProperty*)sock->storage)->prop);
 			if (execdata->error) return;
+			sock = sock->next;
 		}
 	}
 }





More information about the Bf-blender-cvs mailing list