He're a super useful set of hotkeys for maya (when animating)
All it does is switch your viewport to display joints and shapes, meshes, or all of them. It's great for quickly being able to see your animation clearly when the rig is distracting without mucking about with layers :)
I use the 1,2 and 3 keys for this so they are always easily accessible.
grab the python file from here:
https://github.com/tb-animator/tbtools/blob/master/python/viewModes.py
Enjoy!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# joints and controls | |
import viewModes as vm | |
vm.viewModes("joints") | |
# meshes | |
import viewModes as vm | |
vm.viewModes("meshes") | |
# joints, controls and meshes | |
import viewModes as vm | |
vm.viewModes("") |