I'm wondering how to println a sentence ONCE in Processing. when I type println("Hello World!"); it just shows lots of Hello World! sentences. I know how to fix it with keyPressed (when the key is pressed, type this, and stuff) but I don't know how to do it in a simple way...
feedback
|
|
Set a flag so that it only gets printed once. For example, at global scope you should have:
And where you do the println:
| |||
|
feedback
|
|
If it is in a loop (which it sounds like). I would go with either what Mikola said or:
The key being the If it's not in a loop, or this doesn't help, please expand on the issue.. | |||
|
feedback
|