Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2013-12-16 14:07:44 +0400
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2013-12-16 14:08:41 +0400
commitc05209ec017c2aad97d83f36ca2b10eb4b5aee18 (patch)
treeee1db0625f5d1647feaf0c15a2b03d1b5ed496d9 /intern/cycles/app/io_export_cycles_xml.py
parent740c7e677b3ee6bd7c197e82e6362d9a84ebe0c0 (diff)
Fix T37827: cycles XML mesh export utility not longer worked.
Diffstat (limited to 'intern/cycles/app/io_export_cycles_xml.py')
-rw-r--r--intern/cycles/app/io_export_cycles_xml.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/app/io_export_cycles_xml.py b/intern/cycles/app/io_export_cycles_xml.py
index b48545eef32..e310d928b26 100644
--- a/intern/cycles/app/io_export_cycles_xml.py
+++ b/intern/cycles/app/io_export_cycles_xml.py
@@ -116,7 +116,7 @@ class ExportCyclesXML(bpy.types.Operator, ExportHelper):
for v in mesh.vertices:
P += "%f %f %f " % (v.co[0], v.co[1], v.co[2])
- for i, f in enumerate(mesh.faces):
+ for i, f in enumerate(mesh.tessfaces):
nverts += str(len(f.vertices)) + " "
for v in f.vertices: