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>2020-01-26 11:24:26 +0300
committerJulien Duroure <julien.duroure@gmail.com>2020-01-26 11:24:26 +0300
commitb8bc6b5e93e986bcb779e18078596a93b8133006 (patch)
tree85b8e6d02e65d6a380a63a78f8a64f195404d47d
parent05994562fc71735601c043f8a699fc1304394bba (diff)
glTF importer: Revert recent perf on keyframe creation (some issue with non sampled animation)
-rwxr-xr-xio_scene_gltf2/__init__.py2
-rw-r--r--io_scene_gltf2/blender/imp/gltf2_blender_animation_utils.py35
2 files changed, 17 insertions, 20 deletions
diff --git a/io_scene_gltf2/__init__.py b/io_scene_gltf2/__init__.py
index 7cbeb08e..46e6fb26 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": (1, 2, 8),
+ "version": (1, 2, 9),
'blender': (2, 81, 6),
'location': 'File > Import-Export',
'description': 'Import-Export as glTF 2.0',
diff --git a/io_scene_gltf2/blender/imp/gltf2_blender_animation_utils.py b/io_scene_gltf2/blender/imp/gltf2_blender_animation_utils.py
index 0d8cef6b..4feed76a 100644
--- a/io_scene_gltf2/blender/imp/gltf2_blender_animation_utils.py
+++ b/io_scene_gltf2/blender/imp/gltf2_blender_animation_utils.py
@@ -58,28 +58,25 @@ def make_fcurve(action, co, data_path, index=0, group_name=None, interpolation=N
group = action.groups[group_name]
fcurve.group = group
- # Set the default keyframe type in the prefs, then make keyframes
- prefs = bpy.context.preferences.edit
- try:
- orig_interp_type = prefs.keyframe_new_interpolation_type
- orig_handle_type = prefs.keyframe_new_handle_type
+ fcurve.keyframe_points.add(len(co) // 2)
+ fcurve.keyframe_points.foreach_set('co', co)
- if interpolation == 'CUBICSPLINE':
- prefs.keyframe_new_interpolation_type = 'BEZIER'
- prefs.keyframe_new_handle_type = 'AUTO'
+ # Setting interpolation
+ if interpolation == 'CUBICSPLINE':
+ for kf in fcurve.keyframe_points:
+ kf.interpolation = 'BEZIER'
+ kf.handle_right_type = 'AUTO'
+ kf.handle_left_type = 'AUTO'
+ else:
+ if interpolation == 'LINEAR':
+ blender_interpolation = 'LINEAR'
elif interpolation == 'STEP':
- prefs.keyframe_new_interpolation_type = 'CONSTANT'
- elif interpolation == 'LINEAR':
- prefs.keyframe_new_interpolation_type = 'LINEAR'
-
- fcurve.keyframe_points.add(len(co) // 2)
+ blender_interpolation = 'CONSTANT'
+ else:
+ blender_interpolation = 'LINEAR'
+ for kf in fcurve.keyframe_points:
+ kf.interpolation = blender_interpolation
- finally:
- # Restore original prefs
- prefs.keyframe_new_interpolation_type = orig_interp_type
- prefs.keyframe_new_handle_type = orig_handle_type
-
- fcurve.keyframe_points.foreach_set('co', co)
fcurve.update() # force updating tangents (this may change when tangent will be managed)
return fcurve