Hey there, I'm having trouble getting my images to fade in and out. I know I need to use tint(); but I'm having more difficulty than I should be. Below is some of my code, hopefully someone can help me figure out what I need to do!
Right now the program is grabbing images from Flickr based on results from a Twitter search, and those images appear one at a time. I need them to fade in and out.
void draw() {
background(255);
if (frameCount % 200 == 1) {
index++;
if ( index >= fp.length ) {
index = 0;
tweetIndex++;
if ( tweetIndex >= tweets.length ) tweetIndex = 0;