Cleaning up mocap data with autodesk maya, part 1.
Download peelsolve from:
http://mocap.ca/peelsolve/download.html
Download the mocapCleanup python module and icons here:
https://github.com/mocap-ca/cleanup/a...
Python commands used in this video are :
import the module
import mocapCleanup
create the shelf
mocapCleanup.shelf()
create keyboard shortcuts
mocapCleanup.keys()
markerset gui (used to create the lines)
import mocapCleanup.markerset as ms
ms.Gui()
fix the marker display issue
import maya.cmds as m
markers = m.ls(type="peelSquareLocator")
for i in markers : m.setAttr(i + ".displayMode", 3)