Variable `sample_clamp` has been removed from EEVEE Raytracing presents
by d44ee7bf11, so clean up the code for making presents.
Pull Request: https://projects.blender.org/blender/blender/pulls/120977
14 lines
393 B
Python
14 lines
393 B
Python
import bpy
|
|
eevee = bpy.context.scene.eevee
|
|
options = eevee.ray_tracing_options
|
|
|
|
eevee.ray_tracing_method = 'SCREEN'
|
|
options.resolution_scale = '2'
|
|
options.trace_max_roughness = 0.5
|
|
options.screen_trace_quality = 0.25
|
|
options.screen_trace_thickness = 0.20000000298023224
|
|
options.use_denoise = True
|
|
options.denoise_spatial = True
|
|
options.denoise_temporal = True
|
|
options.denoise_bilateral = True
|