Revert back to WASD
This commit is contained in:
parent
13879d2c9a
commit
0f70d1e8f1
1 changed files with 4 additions and 4 deletions
|
@ -26,10 +26,10 @@ object InputReceiver : BaseBehavior<GameContext>() {
|
||||||
// and not a statement, so it returns a value. We can change it into our newPosition variable.
|
// and not a statement, so it returns a value. We can change it into our newPosition variable.
|
||||||
|
|
||||||
val newPosition = when (uiEvent.code) {
|
val newPosition = when (uiEvent.code) {
|
||||||
KeyCode.UP -> currentPos.withRelativeY(-1)
|
KeyCode.KEY_W -> currentPos.withRelativeY(-1)
|
||||||
KeyCode.LEFT -> currentPos.withRelativeX(-1)
|
KeyCode.KEY_A -> currentPos.withRelativeX(-1)
|
||||||
KeyCode.DOWN -> currentPos.withRelativeY(1)
|
KeyCode.KEY_D -> currentPos.withRelativeY(1)
|
||||||
KeyCode.RIGHT -> currentPos.withRelativeX(1)
|
KeyCode.KEY_S -> currentPos.withRelativeX(1)
|
||||||
else -> {
|
else -> {
|
||||||
// If some key is pressed other than WASD, then we just return the current position, so no movement will happen
|
// If some key is pressed other than WASD, then we just return the current position, so no movement will happen
|
||||||
currentPos
|
currentPos
|
||||||
|
|
Loading…
Reference in a new issue