From 06e9a76aa9529eb1bbab94d71fcc66a206266e2e Mon Sep 17 00:00:00 2001
From: Campbell Barton <ideasman42@gmail.com>
Date: Fri, 27 May 2011 15:06:35 +0000
Subject: [PATCH] fix for FBX rotation which I reset in recent commits.

---
 io_scene_fbx/__init__.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/io_scene_fbx/__init__.py b/io_scene_fbx/__init__.py
index cfa4833fb..5da1956ef 100644
--- a/io_scene_fbx/__init__.py
+++ b/io_scene_fbx/__init__.py
@@ -69,7 +69,7 @@ class ExportFBX(bpy.types.Operator, ExportHelper):
                    ('-Y', "-Y Forward", ""),
                    ('-Z', "-Z Forward", ""),
                    ),
-            default='Y',
+            default='-Z',
             )
 
     axis_up = EnumProperty(
@@ -81,7 +81,7 @@ class ExportFBX(bpy.types.Operator, ExportHelper):
                    ('-Y', "-Y Up", ""),
                    ('-Z', "-Z Up", ""),
                    ),
-            default='Z',
+            default='Y',
             )
 
     object_types = EnumProperty(
-- 
GitLab