浏览代码

Merge pull request #12232 from RaheelYawar/blenderExporterAnimation

For key frame animations, default scale is (1, 1, 1)
Mr.doob 7 年之前
父节点
当前提交
db61a04ed2
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      utils/exporters/blender/addons/io_three/exporter/api/animation.py

+ 1 - 1
utils/exporters/blender/addons/io_three/exporter/api/animation.py

@@ -515,7 +515,7 @@ def _scale(bone, frame, action, armature_matrix):
     :param armature_matrix:
 
     """
-    scale = mathutils.Vector((0.0, 0.0, 0.0))
+    scale = mathutils.Vector((1.0, 1.0, 1.0))
 
     change = False