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:
authorSebastián Barschkis <sebbas@sebbas.org>2020-01-31 13:40:49 +0300
committerSebastián Barschkis <sebbas@sebbas.org>2020-01-31 15:50:33 +0300
commita663ece5a3065a745947647c7f68221e496fccf7 (patch)
tree4c97f5153ccc3f8644c4b43bf1aac5e060f15ab8 /source/blender/makesrna/intern/rna_fluid.c
parent9b308f27ad8d2eae6d37df65f22ae74bbdb2792b (diff)
Fluid: Better default values and cleanup
Use OpenVDB by default, smaller particle radius to avoid volume increase, and shorter names for combined fluid particle systems.
Diffstat (limited to 'source/blender/makesrna/intern/rna_fluid.c')
-rw-r--r--source/blender/makesrna/intern/rna_fluid.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/makesrna/intern/rna_fluid.c b/source/blender/makesrna/intern/rna_fluid.c
index 3c29f8ec8c0..01f240e715b 100644
--- a/source/blender/makesrna/intern/rna_fluid.c
+++ b/source/blender/makesrna/intern/rna_fluid.c
@@ -246,7 +246,7 @@ static void rna_Fluid_tracer_parts_update(Main *bmain, Scene *UNUSED(scene), Poi
rna_Fluid_parts_create(bmain,
ptr,
"TracerParticleSettings",
- "Tracer Particles",
+ "Tracers",
"Tracer Particle System",
PART_FLUID_TRACER);
mmd->domain->particle_type |= FLUID_DOMAIN_PARTICLE_TRACER;
@@ -290,7 +290,7 @@ static void rna_Fluid_combined_export_update(Main *bmain, Scene *scene, PointerR
rna_Fluid_parts_create(bmain,
ptr,
"SprayFoamParticleSettings",
- "Spray + Foam Particles",
+ "Spray + Foam",
"Spray + Foam Particle System",
PART_FLUID_SPRAYFOAM);
@@ -316,7 +316,7 @@ static void rna_Fluid_combined_export_update(Main *bmain, Scene *scene, PointerR
rna_Fluid_parts_create(bmain,
ptr,
"SprayBubbleParticleSettings",
- "Spray + Bubble Particles",
+ "Spray + Bubbles",
"Spray + Bubble Particle System",
PART_FLUID_SPRAYBUBBLE);
@@ -369,7 +369,7 @@ static void rna_Fluid_combined_export_update(Main *bmain, Scene *scene, PointerR
rna_Fluid_parts_create(bmain,
ptr,
"SprayFoamBubbleParticleSettings",
- "Spray + Foam + Bubble Particles",
+ "Spray + Foam + Bubbles",
"Spray + Foam + Bubble Particle System",
PART_FLUID_SPRAYFOAMBUBBLE);
@@ -1522,10 +1522,10 @@ static void rna_def_fluid_domain_settings(BlenderRNA *brna)
prop = RNA_def_property(srna, "particle_radius", PROP_FLOAT, PROP_NONE);
RNA_def_property_range(prop, 0.0, 10.0);
- RNA_def_property_ui_text(
- prop,
- "Radius",
- "Particle radius factor. Adjust this parameter when the simulation appears to leak volume");
+ RNA_def_property_ui_text(prop,
+ "Radius",
+ "Particle radius factor. Increase this value if the simulation appears "
+ "to leak volume, decrease it if the simulation seems to gain volume");
RNA_def_property_update(prop, NC_OBJECT | ND_MODIFIER, "rna_Fluid_resetCache");
prop = RNA_def_property(srna, "particle_band_width", PROP_FLOAT, PROP_NONE);