Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion makehuman/plugins/9_export_fbx/fbx_binary.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ def fbx_data_mesh_element(objectsParent, key, id, properties, coord, fvert, vnor

elem_data_single_float64_array(lay_nor, b"Normals", t_ln)

elem_data_single_int32_array(lay_nor, b"NormalsIndex", fvert_.astype(np.int32).reshape(-1))
elem_data_single_int32_array(lay_nor, b"NormalsIndex", fvert[:, :vertsperface].astype(np.int32).reshape(-1))
del t_ln

# TODO export tangents
Expand Down