I have this code but when I press the mouse I want an image fade transition, any help? Thanks!
void setup() {
size(600, 600);
estaciones = new PImage[2];
estaciones[0]=loadImage("test.png");
estaciones[1]=loadImage("test2.png");
background(0);
}
void draw() {
background(0);
// desplazo imagenes
image(estaciones[index], x, 0);
image(estaciones[index], x+estaciones[index].width, 0);
x=x-framer;
if (x<-estaciones[index].width) {
x=0;}
}
void mousePressed() {
siguiente();
}
void siguiente() {
index += 1;
if (index >= estaciones.length) {
index = 0;
}
}