We are about to switch to a new forum software. Until then we have removed the registration on this forum.
How do I change size while the sketch is running? The surface.resizable(true); does not allow for the sketch to change the size. My goal is to be able to have a button in processing activate fullscreen, and be able to disable it.
Answers
Here's @fry 's explanation and example:
https://github.com/processing/processing/wiki/Changes-in-3.0#things-that-may-break-your-2x-sketches
Thank you so much!
surface.setSize(int,int); really works!