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

random seed usage?

  • May 29, 2023
  • 1 reply
  • 919 views

for what would i need to define a random seed in a node, adds randomization?

This topic has been closed for replies.
Correct answer davescm

Many nodes can make use of a random seed to generate variations.

A simple example would be using two 'BnW Spots 1' noise nodes in a graph. By changing the random seed on one of them, it would ensure that both nodes generate a different noise pattern.

 

Dave

 

1 reply

davescm
Community Expert
davescmCommunity ExpertCorrect answer
Community Expert
May 29, 2023

Many nodes can make use of a random seed to generate variations.

A simple example would be using two 'BnW Spots 1' noise nodes in a graph. By changing the random seed on one of them, it would ensure that both nodes generate a different noise pattern.

 

Dave

 

samuel_the_hamster
Known Participant
May 30, 2023

btw is the seed effect proportioal to its value will seed: 7 be as random and affect as much the node as seed ex. 4354875678435 or -437543675436598324879?

samuel_the_hamster
Known Participant
May 30, 2023

Random number generators in computing are not really random they are pseudo random in that they are calculated. The random seed is just a way of starting the calculation - the result is no more or less random no matter what seed you start it with - it is just different.

 

Dave

 


👍