FBX export: Rename 'Off' smoothing option, stupid name really from user PoV...

This commit is contained in:
Bastien Montagne 2015-02-11 12:17:54 +01:00
parent 94625979fa
commit c2c407ad62
1 changed files with 1 additions and 1 deletions

View File

@ -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"),
),