[Bf-extensions-cvs] [c2c407a] master: FBX export: Rename 'Off' smoothing option, stupid name really from user PoV...

Bastien Montagne noreply at git.blender.org
Wed Feb 11 12:18:40 CET 2015


Commit: c2c407ad6264b5bf5dc2ac4e795b3e5c632a49b8
Author: Bastien Montagne
Date:   Wed Feb 11 12:17:54 2015 +0100
Branches: master
https://developer.blender.org/rBAc2c407ad6264b5bf5dc2ac4e795b3e5c632a49b8

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

===================================================================

M	io_scene_fbx/__init__.py

===================================================================

diff --git a/io_scene_fbx/__init__.py b/io_scene_fbx/__init__.py
index 663c1a9..ea89576 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"),
                    ),



More information about the Bf-extensions-cvs mailing list