[Bf-extensions-cvs] [b3b274c5] master: glTF importer: speed up animation keyframe creation

Julien Duroure noreply at git.blender.org
Thu Jan 23 22:05:44 CET 2020


Commit: b3b274c5739de01685572032ac26ac5dcb50b950
Author: Julien Duroure
Date:   Thu Jan 23 22:05:27 2020 +0100
Branches: master
https://developer.blender.org/rBAb3b274c5739de01685572032ac26ac5dcb50b950

glTF importer: speed up animation keyframe creation

===================================================================

M	io_scene_gltf2/__init__.py
M	io_scene_gltf2/blender/imp/gltf2_blender_animation_utils.py

===================================================================

diff --git a/io_scene_gltf2/__init__.py b/io_scene_gltf2/__init__.py
index c00da55f..092bb830 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, 3),
+    "version": (1, 2, 4),
     '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 4feed76a..0d8cef6b 100644
--- a/io_scene_gltf2/blender/imp/gltf2_blender_animation_utils.py
+++ b/io_scene_gltf2/blender/imp/gltf2_blender_animation_utils.py
@@ -58,25 +58,28 @@ def make_fcurve(action, co, data_path, index=0, group_name=None, interpolation=N
         group = action.groups[group_name]
         fcurve.group = group
 
-    fcurve.keyframe_points.add(len(co) // 2)
-    fcurve.keyframe_points.foreach_set('co', co)
+    # 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
 
-    # 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'
+        if interpolation == 'CUBICSPLINE':
+            prefs.keyframe_new_interpolation_type = 'BEZIER'
+            prefs.keyframe_new_handle_type = 'AUTO'
         elif interpolation == 'STEP':
-            blender_interpolation = 'CONSTANT'
-        else:
-            blender_interpolation = 'LINEAR'
-        for kf in fcurve.keyframe_points:
-            kf.interpolation = blender_interpolation
+            prefs.keyframe_new_interpolation_type = 'CONSTANT'
+        elif interpolation == 'LINEAR':
+            prefs.keyframe_new_interpolation_type = 'LINEAR'
+
+        fcurve.keyframe_points.add(len(co) // 2)
 
+    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



More information about the Bf-extensions-cvs mailing list