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-11-20 22:00:50 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-11-20 22:01:15 +0400
commit4d8cb6c294727ff10afeb548759f629b0c2169d6 (patch)
tree318c1d7e12facd64e48a132c6fd4d723f3161c40 /io_scene_vrml2
parent258c32a95672b532bd383fc6ca464127381ae651 (diff)
Update scripts for changes to blenders API.
Diffstat (limited to 'io_scene_vrml2')
-rw-r--r--io_scene_vrml2/export_vrml2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_scene_vrml2/export_vrml2.py b/io_scene_vrml2/export_vrml2.py
index 0e78fb62..0a664e27 100644
--- a/io_scene_vrml2/export_vrml2.py
+++ b/io_scene_vrml2/export_vrml2.py
@@ -179,7 +179,7 @@ def save_object(fw, global_matrix,
bm.from_mesh(me)
bm.transform(global_matrix * obj.matrix_world)
- bmesh.ops.triangulate(bm, faces=bm.faces, use_beauty=True)
+ bmesh.ops.triangulate(bm, faces=bm.faces)
# default empty
material_colors = []