All Projects → minoue → rush

minoue / rush

Licence: MIT License
⚡ Simple command launcher for maya

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to rush

motionPath
Toolchefs Motion Path
Stars: ✭ 31 (-51.56%)
Mutual labels:  maya, maya-plugin, maya-python
maya-glTF
glTF 2.0 exporter for Autodesk Maya
Stars: ✭ 121 (+89.06%)
Mutual labels:  maya, maya-plugin, maya-python
Mayanomicon
Custom nodes and introspection with the maya API
Stars: ✭ 28 (-56.25%)
Mutual labels:  maya, maya-plugin
cameraLattice
Maya camera lattice
Stars: ✭ 35 (-45.31%)
Mutual labels:  maya-plugin, maya-python
xformArrayNodes
Maya plugin with nodes designed to operate on transform components.
Stars: ✭ 27 (-57.81%)
Mutual labels:  maya, maya-plugin
playblastOIIO-maya
Implements a new 'playblast' command that uses OpenImageIO (OIIO) to process and write image data.
Stars: ✭ 29 (-54.69%)
Mutual labels:  maya, maya-plugin
MayaPlugin-UVAutoRatio
Autodesk Maya plugin for correcting the texture-to-world area ratio on objects, meshes and custom selections.
Stars: ✭ 28 (-56.25%)
Mutual labels:  maya, maya-plugin
MayaPartioTools
MayaPartioTools is an open-source plugin to visualize and import particle data in Maya.
Stars: ✭ 20 (-68.75%)
Mutual labels:  maya, maya-plugin
node calculator
Create Maya node-network by entering a math-formula.
Stars: ✭ 56 (-12.5%)
Mutual labels:  maya, maya-python
jlr sort attributes
A tool to sort the Channel Box attributes in Autodesk Maya.
Stars: ✭ 19 (-70.31%)
Mutual labels:  maya, maya-python
gt-tools
GT Tools is a free collection of scripts for Autodesk Maya
Stars: ✭ 44 (-31.25%)
Mutual labels:  maya, maya-python
MayaToolbox
Comprehensive intro to Maya Python.
Stars: ✭ 16 (-75%)
Mutual labels:  maya
revl
Helps to benchmark code for Autodesk Maya.
Stars: ✭ 14 (-78.12%)
Mutual labels:  maya
JMadOnion
No description or website provided.
Stars: ✭ 14 (-78.12%)
Mutual labels:  maya
onionSkinRenderer
This is an Onion Skin Renderer for Autodesk Maya
Stars: ✭ 93 (+45.31%)
Mutual labels:  maya
Yurlungur
The universal scripting wrapper for Maya, Houdini and Unreal Engine.
Stars: ✭ 51 (-20.31%)
Mutual labels:  maya
bana
Set of extensions for Autodesk Maya's Python API.
Stars: ✭ 32 (-50%)
Mutual labels:  maya
AnimFace
A plugin created for Maya for the transfer of motion capture data onto 3D facial models using RBF algorithms
Stars: ✭ 26 (-59.37%)
Mutual labels:  maya-plugin
io pdx mesh
Import/Export files for the Clausewitz game engine
Stars: ✭ 49 (-23.44%)
Mutual labels:  maya
skinner
Skin export / import tools for Autodesk Maya
Stars: ✭ 68 (+6.25%)
Mutual labels:  maya

Rush

TabMenu-style simple command launcher for Maya

demo demo



demo

Features

You can ..

  • Add any commands you want
  • Repeat commands by G key (Maya's default shortcut key to repeat a command)
  • Use multiple words separated by whitespaces
  • Run in maya2022/python3 mw

Installation

Install from zip file

  1. Download zip file and extract it.

  2. Move the extracted "rush" folder to your user script directory.

     e.g. C:\Users\USER\Documents\maya\MAYA_VERSION\scripts
    
  3. Move the 'Rush.py' in rush\plug-ins directory to your maya plug-ins directory.

     e.g C:\Users\USES\Documents\maya\MAYA_VERSION\plug-ins
    
  4. Open maya and activate Rush.py in the plugin manager.

Install using git

You can also download the scripts using git.

>> cd C:\Users\YOURNAME\Documents\maya\MAYA_VERSION\scripts
>> git clone https://github.com/minoue/rush

Then, copy Rush.py to the maya plug-ins directory, and activate the plugin.

How to use

mel

rush2;

python

from maya import cmds
cmds.rush2()

You can open the hotkey editor and assign the command to any key you want.

How to add commands

It's easy to add your own commands. Just create new python file in the module directory or open existing module files, and add functions to them. Once you added functions, you have to add additional dict data which key is a command name(function name) and value is icon path. Icon paths can be maya's default icon names or absolute paths if you have your own icons.

Take a look 'sample.py'

commandDict = {}

def sampleCommand():
    print "Hello World"

commandDict['sampleCommand'] = "sphere.png"

Once you added your commands, make sure to reload the plugin.

sample

Your command should be ready.

sample

Quick access to your modules

Use "openRushModules" command

sample

Command history

Use down arrow key in a black field to show recently used commands.

sample

Additional module directory

You can use additional module directories by adding rush.json in your maya script directory.

For example,

C:\Users\YOURNAME\Documents\maya\2018\scripts\rush.json
(Make sure it's script directory under the version number directory)

rush.json

{
    "path": [
        "C:/Users/MYNAME/Dropbox/dev/maya/rushModule",
        "C:/or/wherever/you/want
    ]
}

Standard Commands

* only some of the commans are defined

  • Common

    • File
    • Edit *
    • Create
    • Select
    • Modify
    • Display
    • Window
    • Cache
    • Arnold
  • Modelling

    • Mesh

    • Edit Mesh

    • Mesh Tools

    • Mesh Display *

    • Curves

    • Surfaces

    • Deform

    • UV

  • Rigging

    • No rigging menus are defined yet
  • Animation

    • No animation menus are defined yet
  • FX

    • No FX menus are defined yet
  • Rendering

    • Maya standard nodes

Credit

Icons made by SimpleIcon from www.flaticon.com is licensed by CC 3.0 BY
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].