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-05-14 00:42:16 +0300
committerJulien Duroure <julien.duroure@gmail.com>2019-05-14 00:42:16 +0300
commitb93459de4bf85b51826cca1c79a2602804e796c4 (patch)
tree1bb67e7643262ca7d9adc92a31d1ffaf085aabb8 /io_scene_gltf2/blender/exp/gltf2_blender_extract.py
parent73df2edf635eee24a2c7a67068acd4d9410de9e5 (diff)
glTF exporter: fix various animation & texture export
Diffstat (limited to 'io_scene_gltf2/blender/exp/gltf2_blender_extract.py')
-rwxr-xr-xio_scene_gltf2/blender/exp/gltf2_blender_extract.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/io_scene_gltf2/blender/exp/gltf2_blender_extract.py b/io_scene_gltf2/blender/exp/gltf2_blender_extract.py
index 6bdbcdad..1597621b 100755
--- a/io_scene_gltf2/blender/exp/gltf2_blender_extract.py
+++ b/io_scene_gltf2/blender/exp/gltf2_blender_extract.py
@@ -105,9 +105,6 @@ def convert_swizzle_scale(scale, export_settings):
def decompose_transition(matrix, export_settings):
translation, rotation, scale = matrix.decompose()
- # Put w at the end.
- rotation = Quaternion((rotation[1], rotation[2], rotation[3], rotation[0]))
-
return translation, rotation, scale
def extract_primitive_floor(a, indices, use_tangents):