Hi !
I struggle to understand how scripts are written with this 2.5x API
For example, I can’t find how to test if a face is selected in editmode or not.
I tried something like that:
active_object=bpy.context.active_object
active_mesh=active_object.data
active_mesh_faces=active_mesh.faces
for f in active_mesh_faces:
if f.select==True:
print (f)
But that doesn’t correspond to the effectively active faces.
Am I missing something here ?