Frame Tools#
Next User Frame#
Move the current Maya frame to the next user frame, for the currently active Collection.
Run this Python command:
import mmSolver.tools.navigaterootframes.tool as tool
tool.main_next_frame()
Previous User Frame#
Move the current Maya frame to the previous user frame, for the currently active Collection.
Run this Python command:
import mmSolver.tools.navigaterootframes.tool as tool
tool.main_prev_frame()
Add User Frame#
Adds the current Maya frame into the currently active Collection’s user frame list. The Solver UI will update automatically with the new frames.
Run this Python command:
import mmSolver.tools.editrootframes.tool as tool
tool.main_add_frame()
Remove User Frame#
Removes the current Maya frame from the currently active Collection’s user frame list. The Solver UI will update automatically with the current frame removed.
Run this Python command:
import mmSolver.tools.editrootframes.tool as tool
tool.main_remove_frame()