Help with stop motion
in
Programming Questions
•
1 year ago
Hi, i'm a brand new processing user and i'm trying to make kinda stop-motion,
this is the code i have, by the way:
PImage[] images = new PImage[184];
void setup(){
size (800,800);
background(0);
}//setup
void draw(){
for ( int i = 0; i< images.length; i++ )
{
images[i] = loadImage( i + ".JPG" );
}
}//draw
My doubts are :
1. i should save the .jpg files in the same sketch folder. didn't i?
2. are both the setup and the void well constructed? i mean, are the right orders into the right place?, 'cause it doesn't work X-)
Thx so much
1