Arrow keys and WASD
It seems that the the keyboard object is setup so that whenever you use the arrow keys (UP, DOWN, LEFT, RIGHT) they are activated by use of either the arrow keys or the WASD keys. I suppose this was done as a convenience for some, to not need to setup double binds, but I wanted to use WASD keys for other purposes. Is there any way to disable this feature or otherwise access only the arrow keys?
ok nevermind I found looking at keyboard object in the console, there is just arrow keys, but there is ARROWUP as well as ARROW_UP?
keyboard.ARROW_LEFT keyboard.ARROW_RIGHT keyboard.ARROW_UP keyboard.ARROW_DOWN
is good for only arrow keys.
keyboard.D keyboard.A keyboard.W keyboard.S
only takes the WASD keys.
The press
and release
values inside the objects work for all of them.
As for your second message, that can be explained very simply. Microstudio only shows the keys inside the object that actually have been pressed inside the window.