[Bf-blender-cvs] [19f3a93e227] master: Fluid: More cleanup in fluid rna code

Sebastián Barschkis noreply at git.blender.org
Wed Feb 19 18:42:26 CET 2020


Commit: 19f3a93e227cefc9ee1cc27178ca81ab4b244aa7
Author: Sebastián Barschkis
Date:   Wed Feb 19 18:41:42 2020 +0100
Branches: master
https://developer.blender.org/rB19f3a93e227cefc9ee1cc27178ca81ab4b244aa7

Fluid: More cleanup in fluid rna code

Removed scientific variable names from UI.

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

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 8a97928ec7b..a87a091f15e 100644
--- a/source/blender/makesrna/intern/rna_fluid.c
+++ b/source/blender/makesrna/intern/rna_fluid.c
@@ -1720,7 +1720,7 @@ static void rna_def_fluid_domain_settings(BlenderRNA *brna)
   RNA_def_property_ui_range(prop, 0.0, 1000.0, 100.0, 3);
   RNA_def_property_ui_text(
       prop,
-      "tauMin_k",
+      "Minimum Kinetic Energy Potential",
       "Lower clamping threshold that indicates the fluid speed where cells start to emit "
       "particles (lower values result in generally more particles)");
   RNA_def_property_update(prop, NC_OBJECT | ND_MODIFIER, "rna_Fluid_resetCache");
@@ -1731,7 +1731,7 @@ static void rna_def_fluid_domain_settings(BlenderRNA *brna)
   RNA_def_property_ui_range(prop, 0.0, 1000.0, 100.0, 3);
   RNA_def_property_ui_text(
       prop,
-      "tauMax_k",
+      "Maximum Kinetic Energy Potential",
       "Upper clamping threshold that indicates the fluid speed where cells no longer emit more "
       "particles (higher value results in generally less particles)");
   RNA_def_property_update(prop, NC_OBJECT | ND_MODIFIER, "rna_Fluid_resetCache");



More information about the Bf-blender-cvs mailing list