GAS Posted May 7, 2016 Share Posted May 7, 2016 Hi I want to build a simple assets using python inside houdini How I can Search Geometry by specific character I want to search all geometry obj have a "exxx" name ? Quote Link to comment Share on other sites More sharing options...
f1480187 Posted May 7, 2016 Share Posted May 7, 2016 Try hou.Node.glob(). network = hou.node('/obj') nodes = [n for n in network.glob('e*') if n.type().name() == 'geo'] 2 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.