SpeedLocator is a user-defined MPxLocatorNode which shows the speed of moving objects in Autodesk Maya.
- Unzip the archive.
- Drag and drop the "dragDropInstaller.py" into the Maya 3d viewport.
- Follow the steps on screen.
- Close all running instances of Maya.
- Go to your Maya modules directory (create the "modules" folder if it does not exist):
(Windows) /Users/<username>/Documents/maya/modules/
(Mac OS X) $HOME/Library/Preferences/Autodesk/maya/modules/
(Linux) $HOME/maya/modules/
- Copy the "speedLocator" folder and "speedLocator.mod" file in the modules folder.
- Start Maya, the module will be loaded and the console should print out:
// Successfully imported plugin module 'speedLocator' v.X.X.X //
After loading the plugin in Maya, type speed in the mel command line. Works with selection. You can as well provide a custom name with the -n flag. Some practical use examples:
speed;
speed "pCube1";
speed -n "speedometer";
from maya import cmds
cmds.speed()
cmds.speed("pCube1")
cmds.speed(n="speedometer")
Windows: Maya 2022, 2020
Linux: Maya 2022
MacOS: Coming Soon
Version 1.0.0
Initial release


