I'm not sure if this is expected behavior but should the keyPressed() callback method be firing once per loop if a single key is pressed and held? For example if I press and hold the 'o' key, my ...
keyPressed() and keyReleased() are not triggered unless the canvas is focused, which usually means that they won't work until you click on it. I guess that's because processing.js attaches the ...