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-04-02 23:10:53 +0300
committerJulien Duroure <julien.duroure@gmail.com>2019-04-02 23:10:53 +0300
commit3e70027f579b29c65d4b6f6eac20a5d431fce5a5 (patch)
treed3950fab389b600f076720e30361fe3686d321fd /io_scene_gltf2/blender/exp/gltf2_blender_gather_animation_sampler_keyframes.py
parent1ec2d0647ea24ce71a915cf2f461578f76468b86 (diff)
glTF exporter: remove some unused code
Diffstat (limited to 'io_scene_gltf2/blender/exp/gltf2_blender_gather_animation_sampler_keyframes.py')
-rwxr-xr-xio_scene_gltf2/blender/exp/gltf2_blender_gather_animation_sampler_keyframes.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/io_scene_gltf2/blender/exp/gltf2_blender_gather_animation_sampler_keyframes.py b/io_scene_gltf2/blender/exp/gltf2_blender_gather_animation_sampler_keyframes.py
index 4eb4df5c..770838e1 100755
--- a/io_scene_gltf2/blender/exp/gltf2_blender_gather_animation_sampler_keyframes.py
+++ b/io_scene_gltf2/blender/exp/gltf2_blender_gather_animation_sampler_keyframes.py
@@ -201,11 +201,5 @@ def needs_baking(channels: typing.Tuple[bpy.types.FCurve],
"Baking animation because of differently located keyframes in one channel")
return True
- # # Baking is required when the animation targets a quaternion with bezier interpolation
- # if channels[0].data_path == "rotation_quaternion" and interpolation == "BEZIER":
- # gltf2_io_debug.print_console("WARNING",
- # "Baking animation because targeting a quaternion with bezier interpolation")
- # return True
-
return False