Increased minimal value for Point Density Texture "Radius" from 0.01 to 0.001.

This commit is contained in:
Thomas Dinges
2010-01-05 20:30:40 +00:00
parent 3b5014c69b
commit d5e3c5482f

View File

@@ -1598,7 +1598,7 @@ static void rna_def_texture_pointdensity(BlenderRNA *brna)
prop= RNA_def_property(srna, "radius", PROP_FLOAT, PROP_NONE);
RNA_def_property_float_sdna(prop, NULL, "radius");
RNA_def_property_range(prop, 0.01, FLT_MAX);
RNA_def_property_range(prop, 0.001, FLT_MAX);
RNA_def_property_ui_text(prop, "Radius", "Radius from the shaded sample to look for points within");
RNA_def_property_update(prop, 0, "rna_Texture_update");