[Bf-blender-cvs] [fffcb6e4806] blender-v2.83-release: Fix T74818: improve tooltip for initial fluid velocity

Jacques Lucke noreply at git.blender.org
Tue May 12 13:56:05 CEST 2020


Commit: fffcb6e48068d77de6bbaaf35ef30515d1078dac
Author: Jacques Lucke
Date:   Tue May 12 13:55:58 2020 +0200
Branches: blender-v2.83-release
https://developer.blender.org/rBfffcb6e48068d77de6bbaaf35ef30515d1078dac

Fix T74818: improve tooltip for initial fluid velocity

===================================================================

M	source/blender/makesrna/intern/rna_fluid.c

===================================================================

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);



More information about the Bf-blender-cvs mailing list