Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Duroure <julien.duroure@gmail.com>2019-05-30 08:34:38 +0300
committerJulien Duroure <julien.duroure@gmail.com>2019-05-30 08:34:38 +0300
commit2bbd76ce994615b918de2866953ff50ade072261 (patch)
treeb2afc27c425012c0a8b601fc399020b509631742 /io_scene_gltf2
parent8be092bce88546f3767ebdd72a2f15779cbf95ed (diff)
glTF exporter: fix animation export when not sampled and constraints
Diffstat (limited to 'io_scene_gltf2')
-rwxr-xr-xio_scene_gltf2/__init__.py2
-rwxr-xr-xio_scene_gltf2/blender/exp/gltf2_blender_gather_animation_samplers.py4
2 files changed, 5 insertions, 1 deletions
diff --git a/io_scene_gltf2/__init__.py b/io_scene_gltf2/__init__.py
index 2186c344..ee910acc 100755
--- a/io_scene_gltf2/__init__.py
+++ b/io_scene_gltf2/__init__.py
@@ -15,7 +15,7 @@
bl_info = {
'name': 'glTF 2.0 format',
'author': 'Julien Duroure, Norbert Nopper, Urs Hanselmann, Moritz Becher, Benjamin Schmithüsen, Jim Eckerlein, and many external contributors',
- "version": (0, 9, 14),
+ "version": (0, 9, 15),
'blender': (2, 80, 0),
'location': 'File > Import-Export',
'description': 'Import-Export as glTF 2.0',
diff --git a/io_scene_gltf2/blender/exp/gltf2_blender_gather_animation_samplers.py b/io_scene_gltf2/blender/exp/gltf2_blender_gather_animation_samplers.py
index 412db171..b4b5a943 100755
--- a/io_scene_gltf2/blender/exp/gltf2_blender_gather_animation_samplers.py
+++ b/io_scene_gltf2/blender/exp/gltf2_blender_gather_animation_samplers.py
@@ -99,6 +99,10 @@ def __gather_non_keyed_values(channels: typing.Tuple[bpy.types.FCurve],
"value": 1
}.get(target)
+ if length is None:
+ # This is not a known target
+ return ()
+
for i in range(0, length):
if bake_channel is not None:
non_keyed_values.append({