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

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

cycles.max_bounces = 8
cycles.caustics_reflective = False
cycles.caustics_refractive = False
cycles.diffuse_bounces = 1
cycles.glossy_bounces = 4
cycles.transmission_bounces = 8
cycles.volume_bounces = 2
cycles.transparent_max_bounces = 8
cycles.use_fast_gi = True
cycles.ao_bounces = 2
cycles.ao_bounces_render = 2