UI: Rename 'Object' to 'Object Velocity' in particle settings

This commit is contained in:
Pablo Vazquez 2019-02-27 19:02:22 +01:00
parent 5e039c29c8
commit 7dd802e66d
1 changed files with 1 additions and 1 deletions

View File

@ -2681,7 +2681,7 @@ static void rna_def_particle_settings(BlenderRNA *brna)
RNA_def_property_float_sdna(prop, NULL, "obfac");
RNA_def_property_range(prop, -200.0f, 200.0f);
RNA_def_property_ui_range(prop, -1.0f, 1.0f, 0.1, 3);
RNA_def_property_ui_text(prop, "Object", "Let the object give the particle a starting velocity");
RNA_def_property_ui_text(prop, "Object Velocity", "Let the object give the particle a starting velocity");
RNA_def_property_update(prop, 0, "rna_Particle_reset");
prop = RNA_def_property(srna, "factor_random", PROP_FLOAT, PROP_NONE);