Match TRS - Maya tools
MatchTrs is a useful tool for any animator that wants to be efficient:
-You can Copy and Paste transform information's from memory, in world and local space , over time and also on multiple objects.
(eg: useful to lock sliding feet on your characters without using constraints )
-Also you can Snap one or more objects to another on single frame or over time (world space baking).
Is optimized (fast!) and animation friendly, in maya 2017+ can also be docked to any maya tab.
(how to videos coming soon)
To install :
download animTools.zip and unzip the file inside your
...../user /maya/script/ directory.
#eg.
so your folder should look like this:
C:Users****DocumentsmayascriptsanimToolsmatchTrs
once you have done so , to run the script open the scriptEditor and inside a python tab, execute :
# Window Docked mode
#-------------CopyStart-----------------------------
from animTools.matchTrs import matchTrs
matchTrs.run()
#-------------CopyEnd------------------------------
# If you prefer the UI to start in window floating mode (non docked) you can use this code instead :
#-------------CopyStart-----------------------------
from animTools.matchTrs import matchTrs
matchTrs.run()
cmds.workspaceControl("matchTrs_Dock", e=True, floating=True)
#-------------CopyEnd------------------------------