Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-09-27 08:09:03 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-09-27 08:09:03 +0400
commit9b80eb7f72b85ef001c4e9c551f944827089647b (patch)
tree93ed5467d394d270f14f3425c689d3992c9621fb /io_scene_fbx
parentc1856348067971d1e246f059108c43f5787b4aea (diff)
edit some fbx properties
Diffstat (limited to 'io_scene_fbx')
-rw-r--r--io_scene_fbx/__init__.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/io_scene_fbx/__init__.py b/io_scene_fbx/__init__.py
index 61f38009..dcf8b371 100644
--- a/io_scene_fbx/__init__.py
+++ b/io_scene_fbx/__init__.py
@@ -84,7 +84,7 @@ class ExportFBX(bpy.types.Operator, ExportHelper):
('Y', "Y Forward", ""),
('Z', "Z Forward", ""),
('-X', "-X Forward", ""),
- ('-Y', "-Y Forward (Blender)", ""),
+ ('-Y', "-Y Forward", ""),
('-Z', "-Z Forward", ""),
),
default='-Z',
@@ -93,7 +93,7 @@ class ExportFBX(bpy.types.Operator, ExportHelper):
name="Up",
items=(('X', "X Up", ""),
('Y', "Y Up", ""),
- ('Z', "Z Up (Blender)", ""),
+ ('Z', "Z Up", ""),
('-X', "-X Up", ""),
('-Y', "-Y Up", ""),
('-Z', "-Z Up", ""),
@@ -166,7 +166,7 @@ class ExportFBX(bpy.types.Operator, ExportHelper):
)
path_mode = path_reference_mode
use_rotate_workaround = BoolProperty(
- name="Rotate Animation Fix",
+ name="XNA Rotate Animation Hack",
description="Disable global rotation, for XNA compatibility",
default=False,
)
@@ -183,7 +183,7 @@ class ExportFBX(bpy.types.Operator, ExportHelper):
),
)
use_batch_own_dir = BoolProperty(
- name="Own Dir",
+ name="Batch Own Dir",
description="Create a dir for each exported file",
default=True,
)