Skip to content
Snippets Groups Projects
Commit c2c407ad authored by Bastien Montagne's avatar Bastien Montagne
Browse files

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

parent 94625979
No related branches found
No related tags found
No related merge requests found
...@@ -263,7 +263,7 @@ class ExportFBX(bpy.types.Operator, ExportHelper, OrientationHelper): ...@@ -263,7 +263,7 @@ class ExportFBX(bpy.types.Operator, ExportHelper, OrientationHelper):
) )
mesh_smooth_type = EnumProperty( mesh_smooth_type = EnumProperty(
name="Smoothing", 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"), ('FACE', "Face", "Write face smoothing"),
('EDGE', "Edge", "Write edge smoothing"), ('EDGE', "Edge", "Write edge smoothing"),
), ),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment