Last active
June 8, 2019 08:00
-
-
Save patwooky/9c818a7782cbbcb8d411e212b5b6ba03 to your computer and use it in GitHub Desktop.
In Maya, search for object transform nodes that has a name containing the search string inside the hierarchy of the currently selected objects
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pymel.core import * | |
''' | |
In Maya, search for object transform nodes that has a name containing the search string inside the hierarchy of the currently selected objects | |
''' | |
srchStr = 'BigBranch' | |
select([x for x in listRelatives(ls(sl=True, type='transform'), ad=True, type='transform') if srchStr in x.name()]) | |
# -- here's a single line version of the above, if needed for whatever | |
# srchStr='_geo';from pymel.core import *;select([x for x in listRelatives(ls(sl=True, type='transform'), ad=True, type='transform') if srchStr in x.name()]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment