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

direct_light.py « integrator « cycles « presets « scripts « release - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 12b332cb4318fc3f3ae5348a34dc5f1d42457be3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import bpy
cycles = bpy.context.scene.cycles

cycles.max_bounces = 8
cycles.min_bounces = 8
cycles.caustics_reflective = False
cycles.caustics_refractive = False
cycles.diffuse_bounces = 0
cycles.glossy_bounces = 1
cycles.transmission_bounces = 2
cycles.volume_bounces = 0
cycles.transparent_min_bounces = 8
cycles.transparent_max_bounces = 8