Hey y’all
This is one of my photographs that I uploaded into processing. I also was able to make it move and then stop
heres my sketch
float x;
PImage photo;
void setup() {
size(534, 800);
x = width;
photo = loadImage (“Taylor_jackie.jpg”);
}
void draw() {
background(0);
image(photo, x, 0);
if(x>0) {
x = x – 1;
}
}