-
Question regarding randomSeed()
As I understand it, having a seed as a constant, like randomSeed(3), should generate the same set of random numbers. However, I’ve put this expression into a shape layer’s position and duplicated it, and it creates two shapes that randomly jump around, but not in unison with eachother:
seedRandom(3,false);
x = random(-10,10);
Y = random(-10,10);
[x,y];Because both shapes have the seed being set to 3, shouldn’t they have the same set of random values? Is there something I’m missing?