-
Generate an x,y,z position for 100 layers
I am looking for a way to generate an x,y,z position for 100 layers that remains constant through time. I have a pile of pictures that I want to place in different positions in 3D space without having to manually set the positions.
I used the expression below, but the values are randomized each frame.
Thanks in advance for any help!
maxZ = 5000;
minZ = -5000;
maxX = 3000;
minX = -3000;
maxY = 2000;
minY = -2000;z = random(minZ,maxZ);
x = random(minX,maxX);
y = random(minY,maxY);[x,y,z]