Skip to content

Instantly share code, notes, and snippets.

@patwooky
Last active June 8, 2019 08:00
Show Gist options
  • Save patwooky/9c818a7782cbbcb8d411e212b5b6ba03 to your computer and use it in GitHub Desktop.
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
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