Does anyone know how to reset the scene when any key is pressed after the animation is done. I want to use this method:
void keyPressed()
{
//what code?
}
But I do not know what code to put inside to make the scene reset. Can someone help?
Does anyone know how to reset the scene when any key is pressed after the animation is done. I want to use this method:
void keyPressed()
{
//what code?
}
But I do not know what code to put inside to make the scene reset. Can someone help?
You have to store your "scene" in variables. To reset your scene, you simply reset those variables.
Here's a simple example that shows a moving ball that resets when you press a key:
Your real "scene" probably has more than one variable, but the idea is the same. Store your "scene" in variables, and then reset those variables when you want to reset the scene.