This script will copy normals from the first selected vertex to all the other vertices you have selected. Be sure to have ordered selection set in your Maya prefs. import maya.cmds as cmds sel = cmds.ls(orderedSelection=True, flatten=True)nrm = cmds.polyNormalPerVertex(sel[0], query=True, xyz=True ) for i in sel[1:]:…
Hi. I'm often in situations where I need to manually alter the normal direction on individual verts to fix shading issues on my models. Is there a tool in Maya to copy the normal direction from one vert to another? I'm currently using a hacked together script to do it but I'm surprised there isn't something in Maya by…