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/makesrna
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/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_fluid.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_fluid.c b/source/blender/makesrna/intern/rna_fluid.c
index 11897ab5e2a..d879d5cc315 100644
--- a/source/blender/makesrna/intern/rna_fluid.c
+++ b/source/blender/makesrna/intern/rna_fluid.c
@@ -126,7 +126,7 @@ static void rna_Fluid_parts_create(Main *bmain,
UNUSED_VARS(bmain, ptr, pset_name, parts_name, psys_name, psys_type);
# else
Object *ob = (Object *)ptr->owner_id;
- BKE_fluid_create_particle_system(bmain, ob, pset_name, parts_name, psys_name, psys_type);
+ BKE_fluid_particle_system_create(bmain, ob, pset_name, parts_name, psys_name, psys_type);
# endif
}
@@ -136,7 +136,7 @@ static void rna_Fluid_parts_delete(PointerRNA *ptr, int ptype)
UNUSED_VARS(ptr, ptype);
# else
Object *ob = (Object *)ptr->owner_id;
- BKE_fluid_delete_particle_system(ob, ptype);
+ BKE_fluid_particle_system_destroy(ob, ptype);
# endif
}