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>2013-02-10 18:51:42 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-02-10 18:51:42 +0400
commitd7407794f247e2c68cd6b34b132f88aa36fecefe (patch)
tree34a3c7fcb5f34e4c3104bf24e0fb6246fb144f3b
parent0ee8c1bb2001c7b7dd2e20a2e2e871fad62477c8 (diff)
skip calculating tessfaces for export. they are not needed.
-rw-r--r--io_scene_obj/export_obj.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_scene_obj/export_obj.py b/io_scene_obj/export_obj.py
index 21e20db6..2acd861e 100644
--- a/io_scene_obj/export_obj.py
+++ b/io_scene_obj/export_obj.py
@@ -359,7 +359,7 @@ def write_file(filepath, objects, scene,
# END NURBS
try:
- me = ob.to_mesh(scene, EXPORT_APPLY_MODIFIERS, 'PREVIEW')
+ me = ob.to_mesh(scene, EXPORT_APPLY_MODIFIERS, 'PREVIEW', calc_tessface=False)
except RuntimeError:
me = None