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

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

cycles.use_square_samples = True

# Path Trace
cycles.samples = 24
cycles.preview_samples = 12

# Branched Path Trace
cycles.aa_samples = 8
cycles.preview_aa_samples = 4

cycles.diffuse_samples = 3
cycles.glossy_samples = 2
cycles.transmission_samples = 2
cycles.ao_samples = 1
cycles.mesh_light_samples = 2
cycles.subsurface_samples = 2
cycles.volume_samples = 2