xxxxxxxxxx
16
function creditsMenuFunction() {
// TODO Interesting background and/or font (optional)
background(255);
push();
textAlign(CENTER);
text("Made by Saeed Lootah\nssl9619\n\nSpecial thanks to:\nProfessor Aaron Sherwood\nPi Ko\n\npress a button to go back to the main menu", width/2, height/2-70);
pop();
if(keyIsPressed) {
screenNumber = 0;
}
}