From 2c4720b95109255e6724aec60061308529c787d7 Mon Sep 17 00:00:00 2001 From: Mark Moissette Date: Sun, 17 Dec 2023 16:08:20 +0100 Subject: [PATCH] fix(tools/gltf_auto_export): fixed lacking preference config that broke the exporter (#77) * fix(tools/gltf_auto_export): fixed lacking preference config that broke the exporter * chore(): bumped version --- tools/gltf_auto_export/__init__.py | 2 +- tools/gltf_auto_export/preferences.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/gltf_auto_export/__init__.py b/tools/gltf_auto_export/__init__.py index 2cb83e3..378a275 100644 --- a/tools/gltf_auto_export/__init__.py +++ b/tools/gltf_auto_export/__init__.py @@ -1,7 +1,7 @@ bl_info = { "name": "gltf_auto_export", "author": "kaosigh", - "version": (0, 7, 0), + "version": (0, 7, 1), "blender": (3, 4, 0), "location": "File > Import-Export", "description": "glTF/glb auto-export", diff --git a/tools/gltf_auto_export/preferences.py b/tools/gltf_auto_export/preferences.py index 99a6570..f76a89a 100644 --- a/tools/gltf_auto_export/preferences.py +++ b/tools/gltf_auto_export/preferences.py @@ -18,6 +18,8 @@ AutoExportGltfPreferenceNames = [ 'export_blueprints', 'export_blueprints_path', + 'export_scene_settings', + 'export_materials_library', 'export_materials_path',