Skip to content
Snippets Groups Projects
Commit 06e9a76a authored by Campbell Barton's avatar Campbell Barton
Browse files

fix for FBX rotation which I reset in recent commits.

parent 359ad3e3
No related branches found
No related tags found
No related merge requests found
...@@ -69,7 +69,7 @@ class ExportFBX(bpy.types.Operator, ExportHelper): ...@@ -69,7 +69,7 @@ class ExportFBX(bpy.types.Operator, ExportHelper):
('-Y', "-Y Forward", ""), ('-Y', "-Y Forward", ""),
('-Z', "-Z Forward", ""), ('-Z', "-Z Forward", ""),
), ),
default='Y', default='-Z',
) )
axis_up = EnumProperty( axis_up = EnumProperty(
...@@ -81,7 +81,7 @@ class ExportFBX(bpy.types.Operator, ExportHelper): ...@@ -81,7 +81,7 @@ class ExportFBX(bpy.types.Operator, ExportHelper):
('-Y', "-Y Up", ""), ('-Y', "-Y Up", ""),
('-Z', "-Z Up", ""), ('-Z', "-Z Up", ""),
), ),
default='Z', default='Y',
) )
object_types = EnumProperty( object_types = EnumProperty(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment