Browse Source

Typo in axis conversion.

manthrax 8 years ago
parent
commit
8c683c1413
1 changed files with 1 additions and 1 deletions
  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 True
         return False
         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
 @_object
 def matrix(obj, options):
 def matrix(obj, options):