[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [16710] trunk/blender/source/blender/src/ buttons_object.c: Patch #17675: Tooltips for fluid control panel - provided by Kai Kostack

Daniel Genrich daniel.genrich at gmx.net
Wed Sep 24 03:40:02 CEST 2008


Revision: 16710
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=16710
Author:   genscher
Date:     2008-09-24 03:39:55 +0200 (Wed, 24 Sep 2008)

Log Message:
-----------
Patch #17675: Tooltips for fluid control panel - provided by Kai Kostack

Modified Paths:
--------------
    trunk/blender/source/blender/src/buttons_object.c

Modified: trunk/blender/source/blender/src/buttons_object.c
===================================================================
--- trunk/blender/source/blender/src/buttons_object.c	2008-09-24 00:23:01 UTC (rev 16709)
+++ trunk/blender/source/blender/src/buttons_object.c	2008-09-24 01:39:55 UTC (rev 16710)
@@ -5417,16 +5417,16 @@
 
 			uiDefBut ( block, LABEL, 0, "Attraction force:", 0,yline,100,objHeight, NULL, 0.0, 0, 0, 0, "" );
 			uiBlockBeginAlign ( block );
-			uiDefButF ( block, NUM, B_DIFF, "Strength:",   120, yline,90,objHeight, &fss->attractforceStrength, -10.0, 10.0, 10, 0, "Specifies time when the control particles are activated." );
-			uiDefButF ( block, NUM, B_DIFF, "Radius:",     210, yline,90,objHeight, &fss->attractforceRadius, 0.0, 10.0, 10, 0, "Specifies time when the control particles are deactivated." );
+			uiDefButF ( block, NUM, B_DIFF, "Strength:",   120, yline,90,objHeight, &fss->attractforceStrength, -10.0, 10.0, 10, 0, "Force strength for directional attraction towards the control object." );
+			uiDefButF ( block, NUM, B_DIFF, "Radius:",     210, yline,90,objHeight, &fss->attractforceRadius, 0.0, 10.0, 10, 0, "Specifies the force field radius around the control object." );
 			uiBlockEndAlign ( block );
 			yline -= lineHeight;
 			yline -= separateHeight;
 
 			uiDefBut ( block, LABEL, 0, "Velocity force:", 0,yline,100,objHeight, NULL, 0.0, 0, 0, 0, "" );
 			uiBlockBeginAlign ( block );
-			uiDefButF ( block, NUM, B_DIFF, "Strength:",   120, yline,90,objHeight, &fss->velocityforceStrength, 0.0, 10.0, 10, 0, "Specifies time when the control particles are activated." );
-			uiDefButF ( block, NUM, B_DIFF, "Radius:",     210, yline,90,objHeight, &fss->velocityforceRadius, 0.0, 10.0, 10, 0, "Specifies time when the control particles are deactivated." );
+			uiDefButF ( block, NUM, B_DIFF, "Strength:",   120, yline,90,objHeight, &fss->velocityforceStrength, 0.0, 10.0, 10, 0, "Force strength of how much of the control object's velocity is influencing the fluid velocity." );
+			uiDefButF ( block, NUM, B_DIFF, "Radius:",     210, yline,90,objHeight, &fss->velocityforceRadius, 0.0, 10.0, 10, 0, "Specifies the force field radius around the control object." );
 			uiBlockEndAlign ( block );
 			yline -= lineHeight;
 			yline -= separateHeight;





More information about the Bf-blender-cvs mailing list