15 lines
363 B
Python
15 lines
363 B
Python
|
|
import bpy
|
||
|
|
cycles = bpy.context.scene.cycles
|
||
|
|
|
||
|
|
cycles.max_bounces = 12
|
||
|
|
cycles.caustics_reflective = True
|
||
|
|
cycles.caustics_refractive = True
|
||
|
|
cycles.diffuse_bounces = 4
|
||
|
|
cycles.glossy_bounces = 4
|
||
|
|
cycles.transmission_bounces = 12
|
||
|
|
cycles.volume_bounces = 0
|
||
|
|
cycles.transparent_max_bounces = 8
|
||
|
|
cycles.use_fast_gi = False
|
||
|
|
cycles.ao_bounces = 1
|
||
|
|
cycles.ao_bounces_render = 1
|