소스 검색

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