We are about to switch to a new forum software. Until then we have removed the registration on this forum.
I need to choice on which screen to display my fullscreen but unfortunatly with the new method apparently is not possible because fullscreen() method must be the first line to be read...
void setup() {
fullScreen(info_from_external_file()) ;
}
int info_from_external_file() {
return 2 ;
}
Answers
B/c Processing 3 has everything locked up w/
private
and "packaged" access levels, and evenfinal
methods, there's no clear way around that but modify PApplet's source code itself! X(They need to move
sketch.handleSettings();
just beforefinal PSurface surface = sketch.initSurface();
:https://GitHub.com/processing/processing/blob/master/core/src/processing/core/PApplet.java#L10159
I see, ti's very locked this part, I try to do that from the settings() :)