Problems with selecting indices in Blender
问题 I have an object (imported from a 3DS) in blender and I am manually segmenting it into parts using (box or circle) select in edit mode. Now, I need to take these parts and combine them in a different software. The way to do this is through indices, I select the vertices of a part and run the following script (in edit mode): import csv import bpy o = bpy.context.active_object.data selected_verts = [vert for vert in o.vertices if vert.select] vertIndexes = [id.index for id in selected_verts]