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.
This commit is contained in:
Ton Roosendaal 2005-04-13 19:26:38 +00:00
parent c3221bac83
commit f5cb2db604

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