Reputation: 31
This is part of my obj file. The goal is to create indices in the order of the vertices.
It was confirmed that the vertex of the first line in the obj file is assigned an index of 523 in the blender. Is there a way to generate the indices in the order of the vertices of the obj file? Or is there a way to specify the vertex indices in the obj file format?
Upvotes: 3
Views: 1973
Reputation: 403
The solution with Blender 2.9 is quite easy :
File -> Import -> Wavefront (.obj)
Blender file View
, click on the file you want to importGeometry
panel, click on Keep Vert Order
;Now the vertices ID should match the .obj indices.
Upvotes: 3