Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <mail@jlucke.com>2019-07-17 18:11:05 +0300
committerJacques Lucke <mail@jlucke.com>2019-07-17 18:11:05 +0300
commit0df9c555783e138eaaba326cca2540e2c2e3b799 (patch)
tree9bcd2dc2406a24c865c0824734d2c667af8882ef /source/blender/simulations/BParticles.h
parenta2b128a4513067c08dbd6ef7b94ba474b8fd7fca (diff)
pass time step in from the modifier
Diffstat (limited to 'source/blender/simulations/BParticles.h')
-rw-r--r--source/blender/simulations/BParticles.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/simulations/BParticles.h b/source/blender/simulations/BParticles.h
index a8e23716f92..498b83fdf3f 100644
--- a/source/blender/simulations/BParticles.h
+++ b/source/blender/simulations/BParticles.h
@@ -25,7 +25,8 @@ void BParticles_world_state_free(BParticlesWorldState world_state);
void BParticles_simulate_modifier(struct BParticlesModifierData *bpmd,
Depsgraph *depsgraph,
BParticlesState particles_state,
- BParticlesWorldState world_state);
+ BParticlesWorldState world_state,
+ float time_step);
uint BParticles_state_particle_count(BParticlesState particles_state);
void BParticles_state_get_positions(BParticlesState particles_state, float (*dst)[3]);