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:
Diffstat (limited to 'io_scene_fbx/export_fbx.py')
-rw-r--r--io_scene_fbx/export_fbx.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/io_scene_fbx/export_fbx.py b/io_scene_fbx/export_fbx.py
index af4c7e6a..89bc275b 100644
--- a/io_scene_fbx/export_fbx.py
+++ b/io_scene_fbx/export_fbx.py
@@ -1431,15 +1431,15 @@ def save_single(operator, scene, filepath="",
fw('\n\t\tEdges: ')
i = -1
for ed in me_edges:
- if i == -1:
- fw('%i,%i' % (ed.vertices[0], ed.vertices[1]))
+ if i == -1:
+ fw('%i,%i' % (ed.vertices[0], ed.vertices[1]))
+ i = 0
+ else:
+ if i == 13:
+ fw('\n\t\t')
i = 0
- else:
- if i == 13:
- fw('\n\t\t')
- i = 0
- fw(',%i,%i' % (ed.vertices[0], ed.vertices[1]))
- i += 1
+ fw(',%i,%i' % (ed.vertices[0], ed.vertices[1]))
+ i += 1
fw('\n\t\tGeometryVersion: 124')