Reputation:
So I am working on a very small project, and I need to have an object rotated one or two times per minute, and I need to do it using Python. Does anyone have any suggestions? Thanks so much.
Upvotes: 0
Views: 1451
Reputation: 5014
Try the rotate
function?...
from maya import cmds
cmds.select(object1)
cmds.rotate(0, 0, 10, relative=True, componentSpace=True)
Maya 2018, python, move and rotate extracted face
Maya Python modules complete documentation?
Upvotes: 1