Page 1 of 1

[Wire] Questions about Perlin Generator instances

Posted: Mon Sep 16, 2024 04:01
by subset
I have a couple of questions about the Perlin Generator:

- In the example patch, it mentions a 'seed'. Where is that set? Can I set a different seed for each instance?
- Does the 'offset' parameter just shift the "array" of outputted numbers, or does it create a unique set of numbers? (E.g. if I used several perlin instances to animate a set of circles, would the circles move along the same path, just slightly delayed?)
perlin gen2.jpg

Re: [Wire] Questions about Perlin Generator instances

Posted: Mon Sep 16, 2024 11:08
by Christoph
Thanks for pointing that out, we'll update the example patch to match the new design of the node.

The "Seed"-inlet shouldn't be there, but you can get a random result with using the "Phase Offset"-inlet.
The phase offset does not create a new uinique random seed, you could see it as shifting the starting point of the noise animation.

If the phase offset values are far enough from each other it will appear random, these two solutions should for example work to get you random-looking outputs:
Screenshot 2024-09-16 120657.png

Re: [Wire] Questions about Perlin Generator instances

Posted: Sun Oct 06, 2024 00:09
by subset
Thank you!