Selection Priorities in Maya

Sometimes it’s easier (and more flexible) to change the selection priorities (aka selection hierarchy) with a simple mel script than use the Preferences window in Maya.

You can use the simple selectPriority MEL command to change the values.

For example:

selectPriority -cluster 10;
selectPriority -locator 5;
selectPriority -handle 100;
// For special nodes (with no selection categories) you can use the -byName flag and the name of the node type
selectPriority -byName "alembicHolder" 95;

Cheers, D

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.