diff --git a/io_scene_gltf2/__init__.py b/io_scene_gltf2/__init__.py index c844838b4fc9a8d7e6afe1cd2fd3a4b3f68ae343..ec6ac40a43ddbf500b74083d33706513a0f54b1a 100755 --- a/io_scene_gltf2/__init__.py +++ b/io_scene_gltf2/__init__.py @@ -4,7 +4,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": (3, 2, 22), + "version": (3, 2, 23), 'blender': (3, 1, 0), 'location': 'File > Import-Export', 'description': 'Import-Export as glTF 2.0', diff --git a/io_scene_gltf2/blender/imp/gltf2_blender_scene.py b/io_scene_gltf2/blender/imp/gltf2_blender_scene.py index 2092a6be69374f6924ff9ac84101f1a59bff8f08..672b68c8146b4b615c9f26310f2aeaf422eba912 100755 --- a/io_scene_gltf2/blender/imp/gltf2_blender_scene.py +++ b/io_scene_gltf2/blender/imp/gltf2_blender_scene.py @@ -36,12 +36,18 @@ class BlenderScene(): BlenderNode.create_vnode(gltf, 'root') # User extensions before scene creation - import_user_extensions('gather_import_scene_after_nodes_hook', gltf, gltf.data.scenes[gltf.data.scene], scene) + gltf_scene = None + if gltf.data.scene is not None: + gltf_scene = gltf.data.scenes[gltf.data.scene] + import_user_extensions('gather_import_scene_after_nodes_hook', gltf, gltf_scene, scene) - # User extensions after scene creation BlenderScene.create_animations(gltf) - import_user_extensions('gather_import_scene_after_animation_hook', gltf, gltf.data.scenes[gltf.data.scene], scene) + # User extensions after scene creation + gltf_scene = None + if gltf.data.scene is not None: + gltf_scene = gltf.data.scenes[gltf.data.scene] + import_user_extensions('gather_import_scene_after_animation_hook', gltf, gltf_scene, scene) if bpy.context.mode != 'OBJECT': bpy.ops.object.mode_set(mode='OBJECT')