Fix for bug: [#8817] Particleradius doesn't update until changing the amount of particles

-Reactor particles didn't initialize their birth times etc. properly when cache was cleared
This commit is contained in:
2008-03-31 21:51:46 +00:00
parent 0ce8fe1ec4
commit fd46b91650

View File

@@ -2078,6 +2078,10 @@ void clear_particles_from_cache(Object *ob, ParticleSystem *psys, int cfra)
int stack_index = modifiers_indexInObject(ob,(ModifierData*)psmd);
BKE_ptcache_id_clear((ID *)ob, PTCACHE_CLEAR_ALL, cfra, stack_index);
/* reactors need to initialize particles always since their birth times might have changed */
if(psys && psys->part && psys->part->type == PART_REACTOR)
psys->recalc |= PSYS_INIT;
}
static void write_particles_to_cache(Object *ob, ParticleSystem *psys, int cfra)
{