+ 1
How do I make p5 js noise not repeat it’s self?
2 odpowiedzi
+ 1
if you're using Perlin noise it should be different every time you compile it. Remember that Perlin noise works on infinite 1D, 2D and 3D spaces.
So you can call noise(x,y,z) at different coords and it will always return a different value between 0 and 1.
+ 1
got it, thanks