Hi,
I’m wondering if anyone can point me in the direction of creating a short introduction paragraph that will show up on screen for about 5 or 10 seconds before removing itself and allowing for other things to be shown on the screen.
Hi,
I’m wondering if anyone can point me in the direction of creating a short introduction paragraph that will show up on screen for about 5 or 10 seconds before removing itself and allowing for other things to be shown on the screen.
You could:
if(ofGetElapsedTimef() < showingTextTime){
ofDrawBitmapString(x,y, "your text")
}else{
//draw the rest
}