Match TRS - Maya tools
- Update v.0.9 = Maya 2022, Python 3.7.7 (download and install as per usual)
- Update v.0.9 = Maya 2023, Python 3.9.7 (download and install as per usual)
- Update v.0.9 = Maya 2024, Python 3.10.08 (download and install as per usual)
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 :
- Make sure to download correct file for the correct maya version
( note the tool works only using Python3+ )
- Unzip matchTrs folder inside your
.../documents/maya/scripts/(folder )
- open maya ( this is version 2024)
- open script editor
- create a new Python Tab
- paste the code below and click run all button.
-UI shows next to the channelBox
RUN CODE :
# Window Docked mode
#-------------CopyStart-----------------------------
from 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 matchTrs import matchTrs
matchTrs.run()
cmds.workspaceControl("MatchTRS_ui_Dock", e=True, floating=True)
#-------------CopyEnd------------------------------
HOW TO INSTALL :