From b5795f2caea6dabe5b5e56b1d1a91e9330edd0bc Mon Sep 17 00:00:00 2001 From: TrackLab <35671643+TrackLab@users.noreply.github.com> Date: Fri, 3 Jan 2025 22:34:22 +0100 Subject: [PATCH 1/2] Fix for Blender 4.3.2 with @superfabiuz update --- __init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/__init__.py b/__init__.py index b9a9e6e..9555cf8 100644 --- a/__init__.py +++ b/__init__.py @@ -1389,8 +1389,8 @@ def execute(self, context): return {'FINISHED'} def modal(self, context, event): - if bpy.context.scene.render.engine not in ["CYCLES", "BLENDER_EEVEE"]: - bpy.context.scene.render.engine = "BLENDER_EEVEE" + if bpy.context.scene.render.engine not in ["CYCLES", "BLENDER_EEVEE_NEXT", "BLENDER_WORKBENCH"]: + bpy.context.scene.render.engine = "BLENDER_EEVEE_NEXT" try: old_objects = [o.name for o in bpy.data.objects] # Get the current objects inorder to find the new node hierarchy bpy.ops.import_scene.gltf(filepath=self.gltf_path) From b5d9484862f540738ae27eb95a6766eae4a585f9 Mon Sep 17 00:00:00 2001 From: TrackLab <35671643+TrackLab@users.noreply.github.com> Date: Fri, 3 Jan 2025 22:35:18 +0100 Subject: [PATCH 2/2] Updated addon version and Blender version --- __init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/__init__.py b/__init__.py index 9555cf8..cca1df2 100644 --- a/__init__.py +++ b/__init__.py @@ -40,8 +40,8 @@ 'author': 'Sketchfab', 'license': 'APACHE2', 'deps': '', - 'version': (1, 6, 1), - "blender": (2, 80, 0), + 'version': (1, 6, 2), + "blender": (4, 3, 2), 'location': 'View3D > Tools > Sketchfab', 'warning': '', 'wiki_url': 'https://github.com/sketchfab/blender-plugin/releases',