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/intern/fluid.c
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/intern/fluid.c')
-rw-r--r--source/blender/blenkernel/intern/fluid.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/fluid.c b/source/blender/blenkernel/intern/fluid.c
index a11a713c617..284799fa17f 100644
--- a/source/blender/blenkernel/intern/fluid.c
+++ b/source/blender/blenkernel/intern/fluid.c
@@ -4754,7 +4754,7 @@ int BKE_fluid_get_data_flags(FluidDomainSettings *mds)
return flags;
}
-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,
@@ -4786,7 +4786,7 @@ void BKE_fluid_create_particle_system(struct Main *bmain,
modifier_unique_name(&ob->modifiers, (ModifierData *)pmmd);
}
-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)
{
ParticleSystemModifierData *pmmd;
ParticleSystem *psys, *next_psys;