From 985d436102f1bfbf3c9b56e7c10538d128028afe Mon Sep 17 00:00:00 2001 From: Julien Duroure Date: Thu, 28 Nov 2024 09:29:36 +0100 Subject: [PATCH] Move import scene extra to pipeline panel --- addons/io_scene_gltf2/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/io_scene_gltf2/__init__.py b/addons/io_scene_gltf2/__init__.py index dd59d2560..3a6f59705 100644 --- a/addons/io_scene_gltf2/__init__.py +++ b/addons/io_scene_gltf2/__init__.py @@ -15,7 +15,7 @@ bl_info = { 'name': 'glTF 2.0 format', 'author': 'Julien Duroure, Scurest, Norbert Nopper, Urs Hanselmann, Moritz Becher, Benjamin Schmithüsen, Jim Eckerlein, and many external contributors', - "version": (4, 4, 17), + "version": (4, 4, 18), 'blender': (4, 3, 0), 'location': 'File > Import-Export', 'description': 'Import-Export as glTF 2.0', @@ -1886,7 +1886,6 @@ def draw(self, context): layout.prop(self, 'guess_original_bind_pose') layout.prop(self, 'export_import_convert_lighting_mode') layout.prop(self, 'import_webp_texture') - layout.prop(self, 'import_scene_extras') import_bone_panel(layout, operator) import_ux_panel(layout, operator) @@ -1990,6 +1989,7 @@ def import_ux_panel(layout, operator): header.label(text="Pipeline") if body: body.prop(operator, 'import_select_created_objects') + body.prop(operator, 'import_scene_extras') def import_panel_user_extension(context, layout):