highdensity Posted August 17, 2017 Share Posted August 17, 2017 is there a way to change a parameter on every node of the same type in my scene at once ? i need to change a setting on alot of nodes. Quote Link to comment Share on other sites More sharing options...
Sepu Posted August 17, 2017 Share Posted August 17, 2017 (edited) just selected all of the node that are the same and change whatever you have to... it should work. If they are in different levels, look at the "opchange" help on the Textport Edited August 17, 2017 by Sepu Quote Link to comment Share on other sites More sharing options...
highdensity Posted August 17, 2017 Author Share Posted August 17, 2017 (edited) 14 minutes ago, Sepu said: just selected all of the node that are the same and change whatever you have to... it should work. If they are in different levels, look at the "opchange" help on the Textport sorry i forgot to specify, they are not at the same level. i will look into that, thx ! Edited August 17, 2017 by highdensity typo Quote Link to comment Share on other sites More sharing options...
merlino Posted August 17, 2017 Share Posted August 17, 2017 Surely with a python script that can look something like this: for object in hou.node("/obj").children(): if object.type().name() == "the type you're searching for": for node in object.children(): if ... //some other condition, if any node.set... //and here you set the parameter you want the value you want Quote Link to comment Share on other sites More sharing options...
highdensity Posted August 18, 2017 Author Share Posted August 18, 2017 2 hours ago, merlino said: Surely with a python script that can look something like this: for object in hou.node("/obj").children(): if object.type().name() == "the type you're searching for": for node in object.children(): if ... //some other condition, if any node.set... //and here you set the parameter you want the value you want i dont know much about programming i have a hard time figuring out what i have to write at the last line. i want to change the load as setting to load houdini geometry. if i hover on load as the name show up as loadmode. i tried stuff like node.setloadmode(loadhoudinigeometry): but its not working.. Quote Link to comment Share on other sites More sharing options...
Stalkerx777 Posted August 18, 2017 Share Posted August 18, 2017 http://www.sidefx.com/docs/houdini/ref/panes/parmsheet 2 Quote Link to comment Share on other sites More sharing options...
highdensity Posted August 18, 2017 Author Share Posted August 18, 2017 32 minutes ago, Stalkerx777 said: http://www.sidefx.com/docs/houdini/ref/panes/parmsheet this did the trick! thx man Quote Link to comment Share on other sites More sharing options...
merlino Posted August 18, 2017 Share Posted August 18, 2017 That's far easier and faster!!! Thanks! 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.