Cycles: fix sampling issue with certain (transparent) max bounce settings, and

tweak presets/defaults to use 128 instead of 1024.
This commit is contained in:
Brecht Van Lommel
2011-10-16 17:06:01 +00:00
parent 7b1ef0f416
commit 7600c687b2
3 changed files with 11 additions and 9 deletions

View File

@@ -1,11 +1,11 @@
import bpy
cycles = bpy.context.scene.cycles
cycles.max_bounces = 1024
cycles.max_bounces = 128
cycles.min_bounces = 3
cycles.no_caustics = False
cycles.diffuse_bounces = 1024
cycles.glossy_bounces = 1024
cycles.transmission_bounces = 1024
cycles.diffuse_bounces = 128
cycles.glossy_bounces = 128
cycles.transmission_bounces = 128
cycles.transparent_min_bounces = 8
cycles.transparent_max_bounces = 1024
cycles.transparent_max_bounces = 128