Hi,
I have a question that seems like the answer would be obvious but I can’t find out what it is.
I have three functions that I want to run, then exit the program. animation01(), animation02(), animation03().
However, this will loop them over and over forever:
void ofApp::draw() {
animation01();
animation02();
animation03();
}
What can I do to just go through these animations, and then end? Should I use threads for this purpose? In reading about threads it seems that this is intended for processor-intensive processes?
Thanks for any pointers!