hey guys, probably an easy one here but I’m a n00b
Is there a simple way to get a list of objects that are in the scene filtered by name AND type?
like
string $allBinds[] = (`ls "*Bind*"`);
gives me anything “Bind” in the name but I really wanted only the Joints of that list, but
string $allBinds[] = (`ls -et "joint" "*Bind*" `);
doesn’t return anything.
it’s probably super simple, cheers guys