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:
authorCampbell Barton <ideasman42@gmail.com>2019-12-17 04:17:57 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-12-17 04:17:57 +0300
commitdb043e7e5b4cd2a6feedc70ef9267fc0bf54d78e (patch)
treeada6ccd0061eb9e06b69d0d8e22289db55c641aa /source/blender/blenkernel/BKE_fluid.h
parentf7745b15b7f6a4cee760820d00c5fde913a4caf8 (diff)
Cleanup: naming for BKE_fluid particle functions
Create/Destroy are more commonly paired terms in BLI/BKE API's.
Diffstat (limited to 'source/blender/blenkernel/BKE_fluid.h')
-rw-r--r--source/blender/blenkernel/BKE_fluid.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/BKE_fluid.h b/source/blender/blenkernel/BKE_fluid.h
index 6c182994890..3e389cfec58 100644
--- a/source/blender/blenkernel/BKE_fluid.h
+++ b/source/blender/blenkernel/BKE_fluid.h
@@ -58,12 +58,12 @@ void BKE_fluid_cache_free(struct FluidDomainSettings *mds, struct Object *ob, in
float BKE_fluid_get_velocity_at(struct Object *ob, float position[3], float velocity[3]);
int BKE_fluid_get_data_flags(struct FluidDomainSettings *mds);
-void BKE_fluid_create_particle_system(struct Main *bmain,
+void BKE_fluid_particle_system_create(struct Main *bmain,
struct Object *ob,
const char *pset_name,
const char *parts_name,
const char *psys_name,
const int psys_type);
-void BKE_fluid_delete_particle_system(struct Object *ob, const int particle_type);
+void BKE_fluid_particle_system_destroy(struct Object *ob, const int particle_type);
#endif /* __BKE_FLUID_H__ */