-
Is there a way to control multiple nodes (changing parameters) in once? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Depends on what you mean by 'control' ... If it's about using the same value, like an image width, in multiple places: For all nodes you want to use the value in, convert the corresponding widget to an input (right click on the node, then select 'Convert xxx to input' from the context menu), create a 'Constant' node to input the value, and connect it to all the nodes. An easy way to create the input node probably is dragging out the input connector from one of the nodes onto a free spot, which should give you a menu with relevant nodes. |
Beta Was this translation helpful? Give feedback.
-
Thank you so much @hustille This is excatly what I was looking for. |
Beta Was this translation helpful? Give feedback.
-
An easy input node is utils/Primitive - the nice thing is that it automagically adapts it's type to whatever you connect it to. It has some downsides, though: It can't be Reroute'd, and at least on my system it often refuses to connect to a second input ... In the long run you probably want to install a custom node specific to the type. Install Manager and have a look through the available packages. |
Beta Was this translation helpful? Give feedback.
Depends on what you mean by 'control' ... If it's about using the same value, like an image width, in multiple places: For all nodes you want to use the value in, convert the corresponding widget to an input (right click on the node, then select 'Convert xxx to input' from the context menu), create a 'Constant' node to input the value, and connect it to all the nodes. An easy way to create the input node probably is dragging out the input connector from one of the nodes onto a free spot, which should give you a menu with relevant nodes.