Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/blender/addon/presets.py
| Show All 26 Lines | class AddPresetIntegrator(AddPresetBase, Operator): | ||||
| preset_menu = "CYCLES_MT_integrator_presets" | preset_menu = "CYCLES_MT_integrator_presets" | ||||
| preset_defines = [ | preset_defines = [ | ||||
| "cycles = bpy.context.scene.cycles" | "cycles = bpy.context.scene.cycles" | ||||
| ] | ] | ||||
| preset_values = [ | preset_values = [ | ||||
| "cycles.max_bounces", | "cycles.max_bounces", | ||||
| "cycles.min_bounces", | |||||
| "cycles.diffuse_bounces", | "cycles.diffuse_bounces", | ||||
| "cycles.glossy_bounces", | "cycles.glossy_bounces", | ||||
| "cycles.transmission_bounces", | "cycles.transmission_bounces", | ||||
| "cycles.volume_bounces", | "cycles.volume_bounces", | ||||
| "cycles.transparent_min_bounces", | |||||
| "cycles.transparent_max_bounces", | "cycles.transparent_max_bounces", | ||||
| "cycles.use_transparent_shadows", | "cycles.use_transparent_shadows", | ||||
| "cycles.caustics_reflective", | "cycles.caustics_reflective", | ||||
| "cycles.caustics_refractive", | "cycles.caustics_refractive", | ||||
| "cycles.blur_glossy" | "cycles.blur_glossy" | ||||
| ] | ] | ||||
| preset_subdir = "cycles/integrator" | preset_subdir = "cycles/integrator" | ||||
| ▲ Show 20 Lines • Show All 56 Lines • Show Last 20 Lines | |||||