[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [32925] trunk/blender/source/blender/ makesrna/intern/rna_texture.c: Raised soft limit for cloud texture noise to 24 for easier access.

Andrea Weikert elubie at gmx.net
Sun Nov 7 17:20:45 CET 2010


Revision: 32925
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=32925
Author:   elubie
Date:     2010-11-07 17:20:44 +0100 (Sun, 07 Nov 2010)

Log Message:
-----------
Raised soft limit for cloud texture noise to 24 for easier access. 

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	2010-11-07 16:19:13 UTC (rev 32924)
+++ trunk/blender/source/blender/makesrna/intern/rna_texture.c	2010-11-07 16:20:44 UTC (rev 32925)
@@ -677,7 +677,7 @@
 	prop= RNA_def_property(srna, "noise_depth", PROP_INT, PROP_NONE);
 	RNA_def_property_int_sdna(prop, NULL, "noisedepth");
 	RNA_def_property_range(prop, 0, INT_MAX);
-	RNA_def_property_ui_range(prop, 0, 6, 0, 2);
+	RNA_def_property_ui_range(prop, 0, 24, 0, 2);
 	RNA_def_property_ui_text(prop, "Noise Depth", "Sets the depth of the cloud calculation");
 	RNA_def_property_update(prop, 0, "rna_Texture_nodes_update");
 
@@ -812,7 +812,7 @@
 	prop= RNA_def_property(srna, "noise_depth", PROP_INT, PROP_NONE);
 	RNA_def_property_int_sdna(prop, NULL, "noisedepth");
 	RNA_def_property_range(prop, 0, INT_MAX);
-	RNA_def_property_ui_range(prop, 0, 6, 0, 2);
+	RNA_def_property_ui_range(prop, 0, 24, 0, 2);
 	RNA_def_property_ui_text(prop, "Noise Depth", "Sets the depth of the cloud calculation");
 	RNA_def_property_update(prop, 0, "rna_Texture_update");
 
@@ -867,7 +867,7 @@
 	prop= RNA_def_property(srna, "noise_depth", PROP_INT, PROP_NONE);
 	RNA_def_property_int_sdna(prop, NULL, "noisedepth");
 	RNA_def_property_range(prop, 0, INT_MAX);
-	RNA_def_property_ui_range(prop, 0, 6, 0, 2);
+	RNA_def_property_ui_range(prop, 0, 24, 0, 2);
 	RNA_def_property_ui_text(prop, "Noise Depth", "Sets the depth of the cloud calculation");
 	RNA_def_property_update(prop, 0, "rna_Texture_update");
 }





More information about the Bf-blender-cvs mailing list