I was just wondering if there was a plan to translate the documentation and the tutorials ?
Processing is probably the most efficient and fun way to learn to program, and the doc and tutorials are really accessible. I'd love to be able to share that with non english speakers.
I guess if there was a wiki or something for translating the doc, it would be done quite quickly !
I just discovered controlP5, which is really wonderful. But I'm having some trouble with it.
How is it possible to use that library and still use mousePressed() and keyPressed() for other actions ?
In my applet, I use mousePressed() to draw shapes on the screen. I would like to use
controlP5 to define some parameters of the shapes. But when I click on the
controlP5 buttons, mousePressed() is fired, and a shape is drawn under the button.
Is there a way NOT to trigger mousePressed() when the mouse was actually pressed on a button ? Or how would I do this ? (maybe not use mousePressed(), but a
controlP5's method instead ?)
Of course, the same applies for keyPressed(), which should not be triggered when I'm typing in a
controlP5 field.