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 <jacques@blender.org>2020-07-19 14:58:49 +0300
committerJacques Lucke <jacques@blender.org>2020-07-19 14:58:58 +0300
commit5063820c9b7fdc499c0aa16ca850541101ffda09 (patch)
tree45541e8148069cabdadfd9ac4dc00558498e73c0 /source/blender/simulation/CMakeLists.txt
parent8c90910dcc3ac56ecaa3f0d0ed1a43a423ff687f (diff)
Particles: Emit particles over time
This adds a basic internal emitter for every particle simulation. The emitter cannot be controlled by the user yet. That will come next.
Diffstat (limited to 'source/blender/simulation/CMakeLists.txt')
-rw-r--r--source/blender/simulation/CMakeLists.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/simulation/CMakeLists.txt b/source/blender/simulation/CMakeLists.txt
index a19e96e1a91..243b056db74 100644
--- a/source/blender/simulation/CMakeLists.txt
+++ b/source/blender/simulation/CMakeLists.txt
@@ -41,6 +41,7 @@ set(SRC
intern/hair_volume.cpp
intern/implicit_blender.c
intern/implicit_eigen.cpp
+ intern/particle_allocator.cc
intern/particle_function.cc
intern/simulation_collect_influences.cc
intern/simulation_solver.cc
@@ -49,11 +50,13 @@ set(SRC
intern/ConstrainedConjugateGradient.h
intern/eigen_utils.h
intern/implicit.h
+ intern/particle_allocator.hh
+ intern/particle_function.hh
intern/simulation_collect_influences.hh
intern/simulation_solver.hh
+ intern/time_interval.hh
SIM_mass_spring.h
- SIM_particle_function.hh
SIM_simulation_update.hh
)