From f5cb2db6043a67d83320fcc29393329080ddfdee Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Wed, 13 Apr 2005 19:26:38 +0000 Subject: [PATCH] Ack! Found out the bugfix commit #2411 was accidentally still calling to do all actions (in all objects) instead of only the ones parented to particle system. --- source/blender/blenkernel/intern/effect.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/blenkernel/intern/effect.c b/source/blender/blenkernel/intern/effect.c index 817b262b432..d3ca8eadb05 100644 --- a/source/blender/blenkernel/intern/effect.c +++ b/source/blender/blenkernel/intern/effect.c @@ -1330,7 +1330,7 @@ void build_particle_system(Object *ob) par->ctime= -1234567.0; do_ob_key(par); if(par->type==OB_ARMATURE) { - do_all_actions(NULL); // only does this object actions + do_all_actions(par); // only does this object actions clear_object_constraint_status(par); // mysterious call, otherwise do_actions doesnt work??? } par= par->parent; @@ -1410,7 +1410,7 @@ void build_particle_system(Object *ob) do_ob_key(par); if(par->type==OB_ARMATURE) { - do_all_actions(NULL); // only does this object actions + do_all_actions(par); // only does this object actions clear_object_constraint_status(par); // mysterious call, otherwise do_actions doesnt work??? } par= par->parent;