Hi,
Does anyone know how to query Maya if normals are locked?
The manual way to do it is go to display/polygons/vert normals and it will display yellow lines if the normals are locked.
But is there a way to do this trough scripting? Preferably with Pymel or OpenMaya.
Replies
update:
so then it's just a simple
if True in pm.polyNormalPerVertex(q=True, freezeNormal =True):
print "contains locked verts"