2023-12-24 22:17:31 +01:00
|
|
|
import bpy
|
|
|
|
|
eevee = bpy.context.scene.eevee
|
|
|
|
|
options = eevee.ray_tracing_options
|
|
|
|
|
|
|
|
|
|
eevee.ray_tracing_method = 'SCREEN'
|
|
|
|
|
options.resolution_scale = '2'
|
2024-04-20 22:34:47 +02:00
|
|
|
options.trace_max_roughness = 0.5
|
2023-12-24 22:17:31 +01:00
|
|
|
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
|
2024-06-11 14:07:03 +02:00
|
|
|
eevee.fast_gi_method = 'GLOBAL_ILLUMINATION'
|
|
|
|
|
eevee.fast_gi_resolution = '2'
|
|
|
|
|
eevee.fast_gi_ray_count = 2
|
|
|
|
|
eevee.fast_gi_step_count = 8
|
|
|
|
|
eevee.fast_gi_quality = 0.25
|
|
|
|
|
eevee.fast_gi_distance = 0.0
|
|
|
|
|
eevee.fast_gi_thickness_near = 0.25
|
|
|
|
|
eevee.fast_gi_thickness_far = 0.7853981852531433
|
|
|
|
|
eevee.fast_gi_bias = 0.05000000074505806
|