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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-10-12 15:37:10 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-10-12 15:37:10 +0300
commit234cf14fe72afd2ab3433935465a01307d2465f0 (patch)
treedf71fad6aab9c917b1977b7b8fe3ed4b0c2ea145 /io_scene_obj
parent305781bd5d04e49249aaaa2f9ae52a2d75f97eb0 (diff)
Fixes for tessface removal.
Diffstat (limited to 'io_scene_obj')
-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 a0f64abf..86f84da7 100644
--- a/io_scene_obj/export_obj.py
+++ b/io_scene_obj/export_obj.py
@@ -349,7 +349,7 @@ def write_file(filepath, objects, depsgraph, scene,
# END NURBS
try:
- me = ob.to_mesh(depsgraph, EXPORT_APPLY_MODIFIERS, calc_loop_triangles=False)
+ me = ob.to_mesh(depsgraph, EXPORT_APPLY_MODIFIERS)
except RuntimeError:
me = None