We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27339c7 commit 43021fdCopy full SHA for 43021fd
import-export-clausewitz/exporter.py
@@ -57,6 +57,9 @@ def export_mesh(self, name):
57
bm.verts[i].normal_update()
58
normal_temp = bm.verts[i].normal
59
normal_temp.normalize()
60
+ temp_y = normal_temp[1]
61
+ normal_temp[1] = normal_temp[2]
62
+ normal_temp[2] = temp_y
63
normals.append(normal_temp)
64
65
bm.faces.ensure_lookup_table()
0 commit comments