Skip to content
Snippets Groups Projects
Commit 8285e451 authored by Sergey Sharybin's avatar Sergey Sharybin
Browse files

Fix #31208: Quake MAP export errors out (2.63)

Looks like it was a typo passing calc_tessface keyword to mesh.update function
parent aa62070c
No related branches found
No related tags found
No related merge requests found
......@@ -355,7 +355,7 @@ def export_map(context, filepath):
#XXX25: BPyMesh.meshCalcNormals(dummy_mesh)
# We need tessfaces
dummy_mesh.update(calc_tessface)
dummy_mesh.update(calc_tessface=True)
# Split mesh into connected regions
for face_group in mesh_utils.mesh_linked_tessfaces(dummy_mesh):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment