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:
authorJacques Lucke <jacques@blender.org>2020-05-12 14:55:58 +0300
committerJacques Lucke <jacques@blender.org>2020-05-12 14:55:58 +0300
commitfffcb6e48068d77de6bbaaf35ef30515d1078dac (patch)
tree4b137184c1c5521323e4394701f8073a9c4b18af /source/blender/makesrna
parentcfbcc94451c4ce42ab2a6e7743ef73b413b4f14a (diff)
Fix T74818: improve tooltip for initial fluid velocity
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_fluid.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_fluid.c b/source/blender/makesrna/intern/rna_fluid.c
index 0a6554a1cea..03b57a496ef 100644
--- a/source/blender/makesrna/intern/rna_fluid.c
+++ b/source/blender/makesrna/intern/rna_fluid.c
@@ -2471,7 +2471,8 @@ static void rna_def_fluid_flow_settings(BlenderRNA *brna)
RNA_def_property_float_sdna(prop, NULL, "vel_coord");
RNA_def_property_array(prop, 3);
RNA_def_property_range(prop, -1000.1, 1000.1);
- RNA_def_property_ui_text(prop, "Initial", "Initial velocity in X, Y and Z direction");
+ RNA_def_property_ui_text(
+ prop, "Initial", "Initial velocity in X, Y and Z direction in world space");
RNA_def_property_update(prop, NC_OBJECT | ND_MODIFIER, "rna_Fluid_flow_reset");
prop = RNA_def_property(srna, "volume_density", PROP_FLOAT, PROP_NONE);