From fcec7304a00de3b612c6a5435328fdfd753fecd3 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 7 Jun 2014 15:35:37 +1000 Subject: [PATCH] FBX Export: rename version so it fits in the UI also rename 'Bake Space Transform' -> 'Apply Transform' --- io_scene_fbx/__init__.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/io_scene_fbx/__init__.py b/io_scene_fbx/__init__.py index b30296cf..86d7ac5a 100644 --- a/io_scene_fbx/__init__.py +++ b/io_scene_fbx/__init__.py @@ -159,9 +159,8 @@ class ExportFBX(bpy.types.Operator, ExportHelper): items=(('BIN7400', "FBX 7.4 binary", "Newer 7.4 binary version, still in development (no animation yet)"), ('ASCII6100', "FBX 6.1 ASCII", "Legacy 6.1 ascii version"), ), - name="Exporter Version", + name="Version", description="Choose which version of the exporter to use", - default='BIN7400', ) use_selection = BoolProperty( @@ -200,7 +199,7 @@ class ExportFBX(bpy.types.Operator, ExportHelper): ) # 7.4 only bake_space_transform = BoolProperty( - name="Bake Space Transform", + name="Apply Transform", description=("Bake space transform into object data, avoids getting unwanted rotations to objects when " "target space is not aligned with Blender's space " "(WARNING! experimental option, might give odd/wrong results)"), -- 2.11.4.GIT