소스 검색

Typo in axis conversion.

manthrax 8 년 전
부모
커밋
8c683c1413
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      utils/exporters/blender/addons/io_three/exporter/api/object.py

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

@@ -371,7 +371,7 @@ def receive_shadow(obj):
                     return True
         return False
 
-AXIS_CONVERSION = axis_conversion(to_forward='-Z', to_up='Y').to_4x4() 
+AXIS_CONVERSION = axis_conversion(to_forward='Z', to_up='Y').to_4x4() 
 
 @_object
 def matrix(obj, options):