[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [61044] trunk/blender/intern/cycles/ blender/addon/properties.py: Cycles:

Thomas Dinges blender at dingto.org
Fri Nov 1 10:37:42 CET 2013


Revision: 61044
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=61044
Author:   dingto
Date:     2013-11-01 09:37:42 +0000 (Fri, 01 Nov 2013)
Log Message:
-----------
Cycles:
* Change the default Light Path settings.

* Diffuse/Glossy bounces are now set to 4, to give a bit faster renders in default scenes. More bounces are often not needed (especially in animation). 
* Transmission bounces have been increased to 12, to not run into problems with dark glass too quickly. 
* Max/Min bounces are now 12/3. 

Modified Paths:
--------------
    trunk/blender/intern/cycles/blender/addon/properties.py

Modified: trunk/blender/intern/cycles/blender/addon/properties.py
===================================================================
--- trunk/blender/intern/cycles/blender/addon/properties.py	2013-11-01 09:00:48 UTC (rev 61043)
+++ trunk/blender/intern/cycles/blender/addon/properties.py	2013-11-01 09:37:42 UTC (rev 61044)
@@ -253,26 +253,26 @@
                 name="Max Bounces",
                 description="Total maximum number of bounces",
                 min=0, max=1024,
-                default=8,
+                default=12,
                 )
 
         cls.diffuse_bounces = IntProperty(
                 name="Diffuse Bounces",
                 description="Maximum number of diffuse reflection bounces, bounded by total maximum",
                 min=0, max=1024,
-                default=128,
+                default=4,
                 )
         cls.glossy_bounces = IntProperty(
                 name="Glossy Bounces",
                 description="Maximum number of glossy reflection bounces, bounded by total maximum",
                 min=0, max=1024,
-                default=128,
+                default=4,
                 )
         cls.transmission_bounces = IntProperty(
                 name="Transmission Bounces",
                 description="Maximum number of transmission bounces, bounded by total maximum",
                 min=0, max=1024,
-                default=128,
+                default=12,
                 )
 
         cls.transparent_min_bounces = IntProperty(




More information about the Bf-blender-cvs mailing list