From 2c57e4f57773f469697bfd788c37decb239af620 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Fri, 1 Nov 2013 09:37:42 +0000 Subject: [PATCH] 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. --- intern/cycles/blender/addon/properties.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/intern/cycles/blender/addon/properties.py b/intern/cycles/blender/addon/properties.py index 367f021ee34..ac15acee0c5 100644 --- a/intern/cycles/blender/addon/properties.py +++ b/intern/cycles/blender/addon/properties.py @@ -253,26 +253,26 @@ class CyclesRenderSettings(bpy.types.PropertyGroup): 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(