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:
authorBastien Montagne <montagne29@wanadoo.fr>2015-02-11 14:17:54 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-02-11 14:18:26 +0300
commitc2c407ad6264b5bf5dc2ac4e795b3e5c632a49b8 (patch)
tree7524f35da19a2115db0ed4cd74aaa4e650c3717d /io_scene_fbx
parent94625979faa15176b94159ca484454b43dca9541 (diff)
FBX export: Rename 'Off' smoothing option, stupid name really from user PoV...
Diffstat (limited to 'io_scene_fbx')
-rw-r--r--io_scene_fbx/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_scene_fbx/__init__.py b/io_scene_fbx/__init__.py
index 663c1a91..ea89576a 100644
--- a/io_scene_fbx/__init__.py
+++ b/io_scene_fbx/__init__.py
@@ -263,7 +263,7 @@ class ExportFBX(bpy.types.Operator, ExportHelper, OrientationHelper):
)
mesh_smooth_type = EnumProperty(
name="Smoothing",
- items=(('OFF', "Off", "Don't write smoothing, export normals instead"),
+ items=(('OFF', "Normals", "Export normals instead of writing edge or face smoothing data"),
('FACE', "Face", "Write face smoothing"),
('EDGE', "Edge", "Write edge smoothing"),
),