[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [51003] trunk/blender/source/blender/ makesrna/intern/rna_texture.c: UI:

Thomas Dinges blender at dingto.org
Tue Oct 2 08:24:03 CEST 2012


Revision: 51003
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=51003
Author:   dingto
Date:     2012-10-02 06:24:02 +0000 (Tue, 02 Oct 2012)
Log Message:
-----------
UI:
* Fix RNA name for "turbulence_strength" property.

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/intern/rna_texture.c

Modified: trunk/blender/source/blender/makesrna/intern/rna_texture.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_texture.c	2012-10-02 05:12:49 UTC (rev 51002)
+++ trunk/blender/source/blender/makesrna/intern/rna_texture.c	2012-10-02 06:24:02 UTC (rev 51003)
@@ -1733,6 +1733,7 @@
 	prop = RNA_def_property(srna, "turbulence_strength", PROP_FLOAT, PROP_NONE);
 	RNA_def_property_float_sdna(prop, NULL, "noise_fac");
 	RNA_def_property_range(prop, 0.01, FLT_MAX);
+	RNA_def_property_ui_text(prop, "Turbulence Strength", "Strength of the added turbulent noise");
 	RNA_def_property_update(prop, 0, "rna_Texture_update");
 	
 	prop = RNA_def_property(srna, "turbulence_depth", PROP_INT, PROP_NONE);




More information about the Bf-blender-cvs mailing list