Skip to content
Snippets Groups Projects
Commit 1d29fc5b authored by Julien Duroure's avatar Julien Duroure
Browse files

glTF exporter: fix lamp parented to bone

parent ee2a0831
No related branches found
No related tags found
No related merge requests found
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
bl_info = { bl_info = {
'name': 'glTF 2.0 format', 'name': 'glTF 2.0 format',
'author': 'Julien Duroure, Norbert Nopper, Urs Hanselmann, Moritz Becher, Benjamin Schmithüsen, Jim Eckerlein, and many external contributors', 'author': 'Julien Duroure, Norbert Nopper, Urs Hanselmann, Moritz Becher, Benjamin Schmithüsen, Jim Eckerlein, and many external contributors',
"version": (1, 3, 25), "version": (1, 3, 26),
'blender': (2, 90, 0), 'blender': (2, 90, 0),
'location': 'File > Import-Export', 'location': 'File > Import-Export',
'description': 'Import-Export as glTF 2.0', 'description': 'Import-Export as glTF 2.0',
......
...@@ -436,7 +436,7 @@ def __get_correction_node(blender_object, export_settings): ...@@ -436,7 +436,7 @@ def __get_correction_node(blender_object, export_settings):
correction_quaternion[3], correction_quaternion[0]] correction_quaternion[3], correction_quaternion[0]]
return gltf2_io.Node( return gltf2_io.Node(
camera=None, camera=None,
children=None, children=[],
extensions=None, extensions=None,
extras=None, extras=None,
matrix=None, matrix=None,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment