Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2011-10-16 21:06:01 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2011-10-16 21:06:01 +0400
commit7600c687b27c07e8cad2ac1fdef912cd4ba47492 (patch)
treea147d458af6b9f2f0acb7023af4a0b0b38f66994 /release/scripts/presets/cycles/integrator/full_global_illumination.py
parent7b1ef0f41620514be98fc9fff9db9bd59ae57e0d (diff)
Cycles: fix sampling issue with certain (transparent) max bounce settings, and
tweak presets/defaults to use 128 instead of 1024.
Diffstat (limited to 'release/scripts/presets/cycles/integrator/full_global_illumination.py')
-rw-r--r--release/scripts/presets/cycles/integrator/full_global_illumination.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/release/scripts/presets/cycles/integrator/full_global_illumination.py b/release/scripts/presets/cycles/integrator/full_global_illumination.py
index 47c4431de13..8687f169b8a 100644
--- a/release/scripts/presets/cycles/integrator/full_global_illumination.py
+++ b/release/scripts/presets/cycles/integrator/full_global_illumination.py
@@ -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