[Bf-blender-cvs] [2679eaa] master: Bugfix: Bend modifier's angle property has crazy limits

Joshua Leung noreply at git.blender.org
Wed May 7 04:23:27 CEST 2014


Commit: 2679eaa712633969640584eae85c4f28cbbc6b7a
Author: Joshua Leung
Date:   Wed May 7 14:18:59 2014 +1200
https://developer.blender.org/rB2679eaa712633969640584eae85c4f28cbbc6b7a

Bugfix: Bend modifier's angle property has crazy limits

As reported by ZanQdo on IRC, the bend modifier's "angle" property had a range
of +/- 572.95 degrees (equivalent to 10 radians). From the looks of things, this
was simply something overlooked when doing degrees to radians conversions. Now
it has a range of +/- 180 degrees.

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

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

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

diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c
index 91333af..191d6d2 100644
--- a/source/blender/makesrna/intern/rna_modifier.c
+++ b/source/blender/makesrna/intern/rna_modifier.c
@@ -2455,7 +2455,7 @@ static void rna_def_modifier_simpledeform(BlenderRNA *brna)
 	RNA_def_property_float_sdna(prop, NULL, "factor");
 	RNA_def_property_range(prop, -FLT_MAX, FLT_MAX);
 	RNA_def_property_float_default(prop, DEG2RADF(45.0f));
-	RNA_def_property_ui_range(prop, -10, 10, 1, 3);
+	RNA_def_property_ui_range(prop, -M_PI, M_PI, DEG2RAD(1), 3);
 	RNA_def_property_ui_text(prop, "Angle", "Angle of deformation");
 	RNA_def_property_update(prop, 0, "rna_Modifier_update");




More information about the Bf-blender-cvs mailing list