We are about to switch to a new forum software. Until then we have removed the registration on this forum.
I am working on a new library to share with the community. The library is done and works fine, I just need to write some documentation and put together the examples.
It seems that with Processing 3, the sketches need to change slightly. The size commands need to be in a separate settings function, which won't get called if the same sketch is run under Processing 2.2.1. So should I make examples for Processing 3 or 2.2.1? Or should there be two versions of the library examples, one for each version? It isn't a big change to the examples and my library works fine as is in both versions.
This might be a library deployment question. I don't want someone to open one of my examples in the wrong version of Processing.
Answers
In PS3 the size command still works inside the
setup
method like 2.2.1When I try that I get this message:
OK are you running an exported app or perhaps using Eclipse?
Actually, you are right:
https://processing.org/reference/settings_.html
I can't run Processing 3 through the Processing IDE, only through Eclipse. According to the documentation, what I see is Eclipse only.
So that answers my question. Thanks!