Hello world Posted November 27, 2011 Share Posted November 27, 2011 Is there any way to iterate through all nodes and prints the parameters of all the nodes? Quote Link to comment Share on other sites More sharing options...
symek Posted November 27, 2011 Share Posted November 27, 2011 Is there any way to iterate through all nodes and prints the parameters of all the nodes? quite easy: for child in hou.node("/obj").allSubChildren(): print child.name() for parm in child.parms(): print "\t" + parm.name() 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.