[Bf-blender-cvs] [1ed1f2f] master: Increase Smooth_View limit to 10.000

Thomas Beck noreply at git.blender.org
Tue Aug 18 20:46:48 CEST 2015


Commit: 1ed1f2f3abd6cdb9134ca3f70c1d504c3fb66c50
Author: Thomas Beck
Date:   Tue Aug 18 20:41:21 2015 +0200
Branches: master
https://developer.blender.org/rB1ed1f2f3abd6cdb9134ca3f70c1d504c3fb66c50

Increase Smooth_View limit to 10.000

Request from @zuggamasta: For turntable like view rotations a very slow and smooth turn is needed. This is now possible with the new limit.

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

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

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

diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index f2e62e6..6fa751a 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -3551,7 +3551,7 @@ static void rna_def_userdef_view(BlenderRNA *brna)
 
 	prop = RNA_def_property(srna, "smooth_view", PROP_INT, PROP_NONE);
 	RNA_def_property_int_sdna(prop, NULL, "smooth_viewtx");
-	RNA_def_property_range(prop, 0, 1000);
+	RNA_def_property_range(prop, 0, 10000);
 	RNA_def_property_ui_text(prop, "Smooth View", "Time to animate the view in milliseconds, zero to disable");
 
 	prop = RNA_def_property(srna, "rotation_angle", PROP_FLOAT, PROP_NONE);




More information about the Bf-blender-cvs mailing list