We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Presentation mode (Full screen) that I want to use, But It wasn't full screen. How to make Presentation mode to full screen?
To force Processing's apps to always start at full screen, we gotta override sketchFullScreen() to always return true: (~~)
true
@ Override boolean sketchFullScreen() { return true; }
https://github.com/processing/processing/blob/master/core/src/processing/core/PApplet.java#L1019
Here is the solution , Fullscreen without using any library
http://forum.processing.org/two/discussion/760/solved-fullscreen-library-is-not-working-with-processing-2-0-x-when-p2d-or-p3d-is-enable#Item_7
Answers
To force Processing's apps to always start at full screen, we gotta override sketchFullScreen() to always return
true
: (~~)https://github.com/processing/processing/blob/master/core/src/processing/core/PApplet.java#L1019
Here is the solution , Fullscreen without using any library
http://forum.processing.org/two/discussion/760/solved-fullscreen-library-is-not-working-with-processing-2-0-x-when-p2d-or-p3d-is-enable#Item_7