Skip to main content
samuel_the_hamster
Known Participant
May 30, 2023
Answered

input nodes? for what

  • May 30, 2023
  • 2 replies
  • 552 views

i understand output, but i dont understand inputs yetwhy they do and why theres 3 types

 

i can see one is for greyscale, other for color and other for int/number

This topic has been closed for replies.
Correct answer davescm

The first is for a greyscale image, the second for a colour image.

The third is to allow the input of a value. The max and min are to limit values (they can be clamped) so that they meet the requirements of where that value input will be used later in your graph.

 

These are particularly useful if the saved graph (SBS) is going to be used as a node in another graph, which is a great way to build up a complex graph and also to save elements to re-use later.

 

Dave

 

2 replies

davescm
davescmCorrect answer
Community Expert
May 30, 2023

The first is for a greyscale image, the second for a colour image.

The third is to allow the input of a value. The max and min are to limit values (they can be clamped) so that they meet the requirements of where that value input will be used later in your graph.

 

These are particularly useful if the saved graph (SBS) is going to be used as a node in another graph, which is a great way to build up a complex graph and also to save elements to re-use later.

 

Dave

 

samuel_the_hamster
Known Participant
May 30, 2023

Can I set up variablrs? For example the same "variable" input along various graphs that share the same value and when the value is changed, the values of this inputs are changed

davescm
Community Expert
May 30, 2023

The way to do that is click in an empty space of your graph and add an input parameter ( you can set up several)

 

Then in a node you can set a property to be driven by that input. That way you could have a set of separate controls or control several nodes from one input.

 

 

You can of course go way beyond that and control node parameters from a function graph which allows more calculation and control over variables.
https://helpx.adobe.com/substance-3d-designer/function-graphs.html

 

Dave

samuel_the_hamster
Known Participant
May 30, 2023

are this just value entries for the graph? like variables for greysc, color and float?

samuel_the_hamster
Known Participant
May 30, 2023

why does the last one has a minimum and max value, isn't enough with just one value, the defualt or this "variables" can be overwritten or so? this applies for the clamp too