http://processing.org/learning/eclipse/ according step 5, I used PApplet.main( new String[] { "--present", "MyGame" }); in my Main method. The game is in full screen mode, how do I switch to window mode?
(I don’t want to just run it as Java Applet…)
Thanks
If you don’t want to use window mode, simply don’t pass the argument:
If you want to switch from present mode to window mode, you’ll need to handle things manually AFAIK. PApplet extends java’s Applet class and uses a Frame to add contents into.
Here’s a quick hack:
Feel free tinker with the exitFullscreen() method to get the desired setup.