I'd need to prevent a player from pressing more than one key at the moment. Now I have it like this
On key Up arrow pressed - do something
[negated] Key Down arrow is down
[negated] Key Left arrow is down
[negated] Key Right arrow is down
On key Up arrow pressed - do something
[negated] Key Up arrow is down
[negated] Key Left arrow is down
.....
etc.
and that means + 3 lines of code for each key. Is there a simpler way? I've tried to use
On key Up arrow pressed - do something
[negated] Player 1 "Down arrow, Left arrow, Right arrow" is down
but this didn't work