In GF 3.6.1 the getKey() method does not return any shift characters.
Uppercase letters all appear as lowercase.
Related, you cannot type and Shift-based characters like '?', '!', '@', '#', etc.
getKey() returns "shift" when the shift key has been pressed and "control" for the control key.
Is there a workaround or fix for this?
act() {
String input = Greenfoot.getKey();
if( input != null ) {
System.out.println( input );
}
}
