Skip to content

Commit

Permalink
Blender 4.3 support (EEVEE -> EEVEE Next)
Browse files Browse the repository at this point in the history
  • Loading branch information
TobyLobster committed Feb 9, 2025
1 parent 821a810 commit 6f9d51e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions loadldraw/loadldraw.py
Original file line number Diff line number Diff line change
Expand Up @@ -4140,8 +4140,11 @@ def setupInstructionsLook():
render = scene.render
render.use_freestyle = True

# Use Blender Eevee for instructions look
render.engine = 'BLENDER_EEVEE'
# Use Blender Eevee (or Eevee Next) for instructions look
try:
render.engine = 'BLENDER_EEVEE'
except:
render.engine = 'BLENDER_EEVEE_NEXT'

# Change camera to Orthographic
if scene.camera is not None:
Expand Down

0 comments on commit 6f9d51e

Please sign in to comment.