keyTyped() not repeating keys
in
Programming Questions
•
4 months ago
According to reference:
"
holding down a key will cause multiple calls to
keyTyped()"
but this is not happening in the sample code below, any ideas?
- void draw(){}
- void keyTyped(){
- println(key);
- }
1