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-10-22 07:59:47 +0300
committerJulien Duroure <julien.duroure@gmail.com>2019-10-22 07:59:47 +0300
commitf9693237686b7b4aa6c7041bf66df5f1caa963fc (patch)
tree4e99a92d5f63f7cbe1101f1e6e962d0970d2a372
parent90c32d29577295546b5a75c7524924fd73565a6d (diff)
glTF exporter: fix out tangent export (copy/paste ...)
-rwxr-xr-xio_scene_gltf2/blender/exp/gltf2_blender_gather_animation_sampler_keyframes.py2
1 files changed, 1 insertions, 1 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 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]):