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:
authorCampbell Barton <ideasman42@gmail.com>2012-04-09 08:27:38 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-09 08:27:38 +0400
commitf1dbe6bf1a795a8355958f8b3e95df0d4d4a8cf1 (patch)
treed479dd87353908a2a721b893bdad59f702648d02 /io_scene_fbx
parent5db2bb4fc27669cc79b7f7970a39a52723f843ee (diff)
fix for bad error exporting vertex locations twice.
Diffstat (limited to 'io_scene_fbx')
-rw-r--r--io_scene_fbx/export_fbx.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/io_scene_fbx/export_fbx.py b/io_scene_fbx/export_fbx.py
index c5c09627..8090c44d 100644
--- a/io_scene_fbx/export_fbx.py
+++ b/io_scene_fbx/export_fbx.py
@@ -1865,17 +1865,6 @@ def save_single(operator, scene, filepath="",
i += 1
fw('\n\t\t}')
- for v in me_vertices:
- if i == -1:
- fw('%.6f,%.6f,%.6f' % v.co[:])
- i = 0
- else:
- if i == 7:
- fw('\n\t\t')
- i = 0
- fw(',%.6f,%.6f,%.6f' % v.co[:])
- i += 1
-
fw('\n\t}')
def write_group(name):