We are about to switch to a new forum software. Until then we have removed the registration on this forum.
In processing 2, there was a way to make the frame resizable using:
void init() {
super.init();
frame.setResizable(true);
}
Is there a way to do this in processing 3.x?
Note: The PSurface Libraries might of something, but I have no idea how to use them.
Answers
What happened when you tried that in the latest version?
This works fine for me in the latest:
You get a little warning saying to use surface instead of frame though, which is easy enough advice to follow:
Here's an example that has worked for me:
Thanks, it works now!