* Improved Tooltip for Particle Brownian property, patch by Jonathan Williamson. Thanks!

This commit is contained in:
Thomas Dinges
2013-10-14 16:38:47 +00:00
parent e3e21a2683
commit c72b4016d0

View File

@@ -2718,7 +2718,7 @@ static void rna_def_particle_settings(BlenderRNA *brna)
RNA_def_property_float_sdna(prop, NULL, "brownfac");
RNA_def_property_range(prop, 0.0f, 200.0f);
RNA_def_property_ui_range(prop, 0, 20, 1, 3);
RNA_def_property_ui_text(prop, "Brownian", "Amount of Brownian motion");
RNA_def_property_ui_text(prop, "Brownian", "Amount of random, erratic particle movement");
RNA_def_property_update(prop, 0, "rna_Particle_reset");
prop = RNA_def_property(srna, "damping", PROP_FLOAT, PROP_NONE);