Skip to content

Commit

Permalink
Presets - Support for Eevee Next
Browse files Browse the repository at this point in the history
  • Loading branch information
p2or authored Jun 25, 2024
1 parent 98873d4 commit b6e4979
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion loom.py
Original file line number Diff line number Diff line change
Expand Up @@ -5557,7 +5557,7 @@ def preset_values(self):
if not prop.startswith(ignore_attribs):
preset_values.append("scene.cycles.{}".format(prop))

if bpy.context.scene.render.engine == 'BLENDER_EEVEE':
if bpy.context.scene.render.engine in ('BLENDER_EEVEE', 'BLENDER_EEVEE_NEXT'):
for prop in dir(scene.eevee):
if "options" in prop:
continue
Expand Down

0 comments on commit b6e4979

Please sign in to comment.