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:
authorAaron Carlisle <carlisle.b3d@gmail.com>2022-03-23 01:05:54 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2022-03-23 01:06:02 +0300
commit5c27391b0f8cd09b189877afeb09e9fefea98411 (patch)
treef73ae1849048e8c2c1efcf6665e8614746ae3e08 /source/blender/makesrna
parentcc3ec1fc6ff42593557ad69b010db3f8a5d1578f (diff)
UI: Clarify fluid sim CFL Number tooltip
Fixes T93863
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_fluid.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_fluid.c b/source/blender/makesrna/intern/rna_fluid.c
index ce0598d355d..dab3cd68d4c 100644
--- a/source/blender/makesrna/intern/rna_fluid.c
+++ b/source/blender/makesrna/intern/rna_fluid.c
@@ -2446,8 +2446,10 @@ static void rna_def_fluid_domain_settings(BlenderRNA *brna)
prop = RNA_def_property(srna, "cfl_condition", PROP_FLOAT, PROP_NONE);
RNA_def_property_float_sdna(prop, NULL, "cfl_condition");
RNA_def_property_range(prop, 0.0, 10.0);
- RNA_def_property_ui_text(
- prop, "CFL", "Maximal velocity per cell (higher value results in greater timesteps)");
+ RNA_def_property_ui_text(prop,
+ "CFL",
+ "Maximal velocity per cell (greater CFL numbers will minimize the "
+ "number of simulation steps and the computation time.)");
RNA_def_property_update(prop, NC_OBJECT | ND_MODIFIER, "rna_Fluid_datacache_reset");
prop = RNA_def_property(srna, "use_adaptive_timesteps", PROP_BOOLEAN, PROP_NONE);