gweiss Posted October 16, 2017 Share Posted October 16, 2017 Hi, how can I select all nodes of specific type, for example I want to select all the bone nodes and put them inside a network box or just store them in a variable I tried using hou.objNodeTypeCategory().nodeTypes()['bone'], but couldn't find the way to use the result. also is there a clean way to add items to a network box, size it around the nodes and layout the nodes inside it? Thanks G Quote Link to comment Share on other sites More sharing options...
julian johnson Posted October 17, 2017 Share Posted October 17, 2017 node_type = hou.objNodeTypeCategory().nodeTypes()['bone'] for x in node_type.instances(): print x Using instances() should give you the bone nodes in the scene.. 3 1 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.