[Bf-blender-cvs] [497a9ef7a39] blender2.8: Fix T58750: missing fallof power tooltip.

Sebastian Parborg noreply at git.blender.org
Fri Dec 7 01:17:39 CET 2018


Commit: 497a9ef7a39608d62df83c10e209f22809e94e6e
Author: Sebastian Parborg
Date:   Fri Dec 7 01:13:59 2018 +0100
Branches: blender2.8
https://developer.blender.org/rB497a9ef7a39608d62df83c10e209f22809e94e6e

Fix T58750: missing fallof power tooltip.

Differential Revision: https://developer.blender.org/D4042

===================================================================

M	source/blender/makesrna/intern/rna_object_force.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_object_force.c b/source/blender/makesrna/intern/rna_object_force.c
index a58719085b9..aeb9c0fcc43 100644
--- a/source/blender/makesrna/intern/rna_object_force.c
+++ b/source/blender/makesrna/intern/rna_object_force.c
@@ -1266,7 +1266,7 @@ static void rna_def_field(BlenderRNA *brna)
 	prop = RNA_def_property(srna, "falloff_power", PROP_FLOAT, PROP_NONE);
 	RNA_def_property_float_sdna(prop, NULL, "f_power");
 	RNA_def_property_range(prop, 0.0f, 10.0f);
-	RNA_def_property_ui_text(prop, "Falloff Power", "");
+	RNA_def_property_ui_text(prop, "Falloff Power", "How quickly strength falls off with distance from the force field");
 	RNA_def_property_update(prop, 0, "rna_FieldSettings_update");
 
 	prop = RNA_def_property(srna, "distance_min", PROP_FLOAT, PROP_NONE);



More information about the Bf-blender-cvs mailing list