Saturday, 12 September 2015

Useful maya viewport hotkeys, part 1


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!


# 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("")