@@ -146,7 +146,7 @@ class RenderSettingPreset(bpy.types.Operator):
146146 def execute (self , context ):
147147 if self .preset == "performance" :
148148 # EEVEE
149- bpy .context .scene .eevee .use_taa_reprojection = False
149+ # bpy.context.scene.eevee.use_taa_reprojection = False
150150 bpy .context .scene .eevee .volumetric_tile_size = '2'
151151 bpy .context .scene .eevee .volumetric_shadow_samples = 32
152152 bpy .context .scene .eevee .volumetric_samples = 64
@@ -162,7 +162,7 @@ def execute(self, context):
162162
163163 elif self .preset == "balance" :
164164 # EEVEE
165- bpy .context .scene .eevee .use_taa_reprojection = False
165+ # bpy.context.scene.eevee.use_taa_reprojection = False
166166 bpy .context .scene .eevee .volumetric_tile_size = '2'
167167 bpy .context .scene .eevee .volumetric_shadow_samples = 64
168168 bpy .context .scene .eevee .volumetric_samples = 128
@@ -178,7 +178,7 @@ def execute(self, context):
178178
179179 elif self .preset == "quality" :
180180 # EEVEE
181- bpy .context .scene .eevee .use_taa_reprojection = False
181+ # bpy.context.scene.eevee.use_taa_reprojection = False
182182 bpy .context .scene .eevee .volumetric_tile_size = '2'
183183 bpy .context .scene .eevee .volumetric_shadow_samples = 128
184184 bpy .context .scene .eevee .volumetric_samples = 256
@@ -202,7 +202,7 @@ class SliceViewer(bpy.types.Operator):
202202 bl_icon = "FILE_VOLUME"
203203
204204 def execute (self , context ):
205- bpy .context .scene .eevee .use_taa_reprojection = False
205+ # bpy.context.scene.eevee.use_taa_reprojection = False
206206 bpy .context .scene .eevee .volumetric_tile_size = '2'
207207 bpy .context .scene .eevee .volumetric_shadow_samples = 128
208208 bpy .context .scene .eevee .volumetric_samples = 128
0 commit comments