PDA

View Full Version : Quickselectionset manager?


kamsvag
05-02-2002, 05:43 PM
Does anybody know of a working Quickselectionset manager for maya 4.0? Or simply a way to list the created quickselectionsets?

Thanks for taking the time to look into this matter.

/Henrik

alexx
05-02-2002, 07:51 PM
hey,

i had a quick look in the scripts from maya and extracted a small piece of code that i altered in one line to return the quick select sets.
from there on i guess you can help yourself with the sets.


string $charSets[] = `ls -sets`;
string $quickSets[] = {};

for( $character in $charSets )
{
if( `sets -q -t $character` == "gCharacterSet" )
{
$quickSets[size($quickSets)] = $character;
}
}

print("\n\nQuick Select Sets in scene: \n");
print ($quickSets);


in the end, $quickSets holds the names from the quick selection sets in your current scene. (please donīt ask WHY it works like that.. aliasī ways are hard to get :)


hope that helps

alexx
05-03-2002, 12:57 PM
here you can find a small GUI interface, that lets you select from your quick selections.
you can select more than just one set at once.

http://bigott.gmxhome.de/scripts/quickSelectionManager.mel

cheers

alexx :buttrock:

kamsvag
05-03-2002, 09:22 PM
Thanx, works just the way I needed it to do. You're a rock!

Cheers.

CGTalk Moderation
01-13-2006, 05:00 AM
This thread has been automatically closed as it remained inactive for 12 months. If you wish to continue the discussion, please create a new thread in the appropriate forum.