[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [58290] branches/soc-2013-cycles_mblur/ intern/cycles/blender/addon/properties.py: This commit changes the default and min for the number of export steps

Gavin Howard gavin.d.howard at gmail.com
Mon Jul 15 23:49:34 CEST 2013


Revision: 58290
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=58290
Author:   gdh
Date:     2013-07-15 21:49:34 +0000 (Mon, 15 Jul 2013)
Log Message:
-----------
This commit changes the default and min for the number of export steps 
for an object.

Brecht and I decided to allow only odd numbers of export steps, so the 
user actually decides how many steps are only on one side. The formula 
will be (user_steps * 2 + 1). That way, the perfect frame will always be 
exported, which will be more predictable for animators.

However, this requires a change in the default and minimum for the num-
ber of steps. The default and min used to be 3, so to make the ACTUAL 
number 3, the default and min became 1.

Modified Paths:
--------------
    branches/soc-2013-cycles_mblur/intern/cycles/blender/addon/properties.py

Modified: branches/soc-2013-cycles_mblur/intern/cycles/blender/addon/properties.py
===================================================================
--- branches/soc-2013-cycles_mblur/intern/cycles/blender/addon/properties.py	2013-07-15 21:44:10 UTC (rev 58289)
+++ branches/soc-2013-cycles_mblur/intern/cycles/blender/addon/properties.py	2013-07-15 21:49:34 UTC (rev 58290)
@@ -702,8 +702,8 @@
         cls.mblur_steps = IntProperty(
                 name="Motion Blur Steps",
                 description="Number of steps to export for rendering motion blur",
-                min=3, soft_max=256,
-                default=3,
+                min=1, soft_max=256,
+                default=1,
                 )
 
     @classmethod




More information about the Bf-blender-cvs mailing list