We are about to switch to a new forum software. Until then we have removed the registration on this forum.
In processing 2, it was easy to swap between full screen mode and windowed mode by setting frame.setResizable(true);
And resizing the windowframe.setSize(width, height);
But now with processing 3, neither of these commands work anymore. They did, however, add the new fullScreen();
method. But this can only be called once, and size();
can't be called. I also want to avoid creating a new window, since I would need to transfer information to the second draw loop, and the transition is rough. Is there a way to re-size the current window? Or do I have to wait for a new library?
Thanks