@@ -146,7 +146,7 @@ class RenderSettingPreset(bpy.types.Operator):
146
146
def execute (self , context ):
147
147
if self .preset == "performance" :
148
148
# EEVEE
149
- bpy .context .scene .eevee .use_taa_reprojection = False
149
+ # bpy.context.scene.eevee.use_taa_reprojection = False
150
150
bpy .context .scene .eevee .volumetric_tile_size = '2'
151
151
bpy .context .scene .eevee .volumetric_shadow_samples = 32
152
152
bpy .context .scene .eevee .volumetric_samples = 64
@@ -162,7 +162,7 @@ def execute(self, context):
162
162
163
163
elif self .preset == "balance" :
164
164
# EEVEE
165
- bpy .context .scene .eevee .use_taa_reprojection = False
165
+ # bpy.context.scene.eevee.use_taa_reprojection = False
166
166
bpy .context .scene .eevee .volumetric_tile_size = '2'
167
167
bpy .context .scene .eevee .volumetric_shadow_samples = 64
168
168
bpy .context .scene .eevee .volumetric_samples = 128
@@ -178,7 +178,7 @@ def execute(self, context):
178
178
179
179
elif self .preset == "quality" :
180
180
# EEVEE
181
- bpy .context .scene .eevee .use_taa_reprojection = False
181
+ # bpy.context.scene.eevee.use_taa_reprojection = False
182
182
bpy .context .scene .eevee .volumetric_tile_size = '2'
183
183
bpy .context .scene .eevee .volumetric_shadow_samples = 128
184
184
bpy .context .scene .eevee .volumetric_samples = 256
@@ -202,7 +202,7 @@ class SliceViewer(bpy.types.Operator):
202
202
bl_icon = "FILE_VOLUME"
203
203
204
204
def execute (self , context ):
205
- bpy .context .scene .eevee .use_taa_reprojection = False
205
+ # bpy.context.scene.eevee.use_taa_reprojection = False
206
206
bpy .context .scene .eevee .volumetric_tile_size = '2'
207
207
bpy .context .scene .eevee .volumetric_shadow_samples = 128
208
208
bpy .context .scene .eevee .volumetric_samples = 128
0 commit comments