diff --git a/io_scene_fbx/export_fbx.py b/io_scene_fbx/export_fbx.py index c4628e36ff1d612182e91fdab4f0c91f68f10d84..6b04da9c7881a120cc0331e1643d2b5434239f35 100644 --- a/io_scene_fbx/export_fbx.py +++ b/io_scene_fbx/export_fbx.py @@ -1505,13 +1505,13 @@ def save_single(operator, scene, filepath="", i = -1 for ed in me_edges: if i == -1: - fw('%i' % (ed.use_edge_sharp)) + fw('%i' % (not ed.use_edge_sharp)) i = 0 else: if i == 54: fw('\n\t\t\t ') i = 0 - fw(',%i' % ed.use_edge_sharp) + fw(',%i' % (not ed.use_edge_sharp)) i += 1 fw('\n\t\t}')