Skip to content

Commit

Permalink
Move import scene extra to pipeline panel
Browse files Browse the repository at this point in the history
  • Loading branch information
julienduroure committed Nov 28, 2024
1 parent 2b47047 commit 985d436
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addons/io_scene_gltf2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -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)

Expand Down Expand Up @@ -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):
Expand Down

0 comments on commit 985d436

Please sign in to comment.