From f9693237686b7b4aa6c7041bf66df5f1caa963fc Mon Sep 17 00:00:00 2001 From: Julien Duroure Date: Tue, 22 Oct 2019 06:59:47 +0200 Subject: glTF exporter: fix out tangent export (copy/paste ...) --- .../blender/exp/gltf2_blender_gather_animation_sampler_keyframes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 8b6f0db6..8e2c67b2 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 @@ -111,7 +111,7 @@ class Keyframe: @property def out_tangent(self) -> typing.Union[mathutils.Vector, mathutils.Euler, mathutils.Quaternion, typing.List[float]]: - return self.__in_tangent + return self.__out_tangent @out_tangent.setter def out_tangent(self, value: typing.List[float]): -- cgit v1.2.3