Processing Forum
PImage[] bild;
PImage img;
float a = random(50,950);
float b = random(50,550);
int n=34;
void setup() {
size(1000, 600);
img = loadImage("background.jpg");
bild=new PImage[n];
for(int i=0;i<bild.length;i++){
bild[i]=loadImage(str(i) + ".png");
smooth();
//frameRate(25);
}
}
void draw(){
image(img,0,0);
for(int i=0;i<bild.length;i++){
image(bild[i],a+random(5),b+random(5));
}
}