Fixed a bug where the ASE exporter did not properly export smoothing groups

This commit is contained in:
Colin Basnett
2021-04-01 16:29:37 -07:00
parent 1feea05092
commit 04a9e65599
2 changed files with 2 additions and 2 deletions

View File

@@ -57,7 +57,7 @@ class ASEBuilder(object):
mesh_data.calc_loop_triangles()
mesh_data.calc_normals_split()
poly_groups, groups = mesh_data.calc_smooth_groups(use_bitflags=False)
poly_groups, groups = mesh_data.calc_smooth_groups(use_bitflags=True)
# Faces
for face_index, loop_triangle in enumerate(mesh_data.loop_triangles):