Toggling Between Full screen and Windowed Mode

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

Sign In or Register to comment.