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 /oscurart_tools
parent305781bd5d04e49249aaaa2f9ae52a2d75f97eb0 (diff)
Fixes for tessface removal.
Diffstat (limited to 'oscurart_tools')
-rw-r--r--oscurart_tools/oscurart_meshes.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/oscurart_tools/oscurart_meshes.py b/oscurart_tools/oscurart_meshes.py
index deed80bc..f317b1fc 100644
--- a/oscurart_tools/oscurart_meshes.py
+++ b/oscurart_tools/oscurart_meshes.py
@@ -321,8 +321,7 @@ def DefOscObjectToMesh():
MESH = ACTOBJ.to_mesh(
scene=bpy.context.scene,
apply_modifiers=True,
- settings="RENDER",
- calc_loop_triangles=True)
+ settings="RENDER")
OBJECT = bpy.data.objects.new(("%s_Freeze") % (ACTOBJ.name), MESH)
bpy.context.scene.objects.link(OBJECT)