Add Chromium-only Blender WebEngine parity work
This commit is contained in:
12
blender-5.2.0/scripts/presets/cycles/sampling/Final.py
Normal file
12
blender-5.2.0/scripts/presets/cycles/sampling/Final.py
Normal file
@@ -0,0 +1,12 @@
|
||||
import bpy
|
||||
cycles = bpy.context.scene.cycles
|
||||
|
||||
cycles.use_adaptive_sampling = True
|
||||
cycles.adaptive_threshold = 0.01
|
||||
cycles.samples = 4096
|
||||
cycles.adaptive_min_samples = 0
|
||||
cycles.time_limit = 0.0
|
||||
cycles.use_denoising = True
|
||||
cycles.denoiser = 'OPENIMAGEDENOISE'
|
||||
cycles.denoising_input_passes = 'RGB_ALBEDO_NORMAL'
|
||||
cycles.denoising_prefilter = 'ACCURATE'
|
||||
12
blender-5.2.0/scripts/presets/cycles/sampling/Preview.py
Normal file
12
blender-5.2.0/scripts/presets/cycles/sampling/Preview.py
Normal file
@@ -0,0 +1,12 @@
|
||||
import bpy
|
||||
cycles = bpy.context.scene.cycles
|
||||
|
||||
cycles.use_adaptive_sampling = True
|
||||
cycles.adaptive_threshold = 0.1
|
||||
cycles.samples = 1024
|
||||
cycles.adaptive_min_samples = 0
|
||||
cycles.time_limit = 0.0
|
||||
cycles.use_denoising = True
|
||||
cycles.denoiser = 'OPENIMAGEDENOISE'
|
||||
cycles.denoising_input_passes = 'RGB_ALBEDO_NORMAL'
|
||||
cycles.denoising_prefilter = 'ACCURATE'
|
||||
Reference in New Issue
Block a user