Skip to content
Snippets Groups Projects
Commit 0e4a36c6 authored by John Phan's avatar John Phan
Browse files

Added smooth group.

parent 6bc06c10
No related branches found
No related tags found
No related merge requests found
...@@ -851,8 +851,17 @@ def parse_meshes(blender_meshes, psk_file): ...@@ -851,8 +851,17 @@ def parse_meshes(blender_meshes, psk_file):
dindex1 = current_face.vertices[1]; dindex1 = current_face.vertices[1];
dindex2 = current_face.vertices[2]; dindex2 = current_face.vertices[2];
raise RuntimeError("normal vector coplanar with face! points:", current_mesh.vertices[dindex0].co, current_mesh.vertices[dindex1].co, current_mesh.vertices[dindex2].co) raise RuntimeError("normal vector coplanar with face! points:", current_mesh.vertices[dindex0].co, current_mesh.vertices[dindex1].co, current_mesh.vertices[dindex2].co)
#print((current_face.use_smooth))
#not sure if this right
#tri.SmoothingGroups
if current_face.use_smooth == True:
tri.SmoothingGroups = 1
else:
tri.SmoothingGroups = 0
tri.MatIndex = object_material_index tri.MatIndex = object_material_index
#print(tri) #print(tri)
psk_file.AddFace(tri) psk_file.AddFace(tri)
......
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