Skip to content

Commit

Permalink
omitting R G B from .obj vertex data (#760)
Browse files Browse the repository at this point in the history
Signed-off-by: Mike Jacobi <[email protected]>
  • Loading branch information
mikerjacobi authored Nov 7, 2023
1 parent 8c331cc commit 70c6d20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kaolin/io/obj.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def _maybe_complete_material_assignment():
if len(data) == 0:
continue
if data[0] == 'v':
vertices.append(data[1:])
vertices.append(data[1:4])
elif with_materials and data[0] == 'vt':
uvs.append(data[1:3])
elif with_normals and data[0] == 'vn':
Expand Down

0 comments on commit 70c6d20

Please sign in to comment.