fix dumb keybind for move down
This commit is contained in:
parent
c7452bba11
commit
9e9292320f
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ fn player_move(
|
||||||
KeyCode::A => velocity -= right,
|
KeyCode::A => velocity -= right,
|
||||||
KeyCode::D => velocity += right,
|
KeyCode::D => velocity += right,
|
||||||
KeyCode::Space => velocity += Vec3::Y,
|
KeyCode::Space => velocity += Vec3::Y,
|
||||||
KeyCode::LShift => velocity -= Vec3::Y,
|
KeyCode::Delete => velocity -= Vec3::Y,
|
||||||
_ => (),
|
_ => (),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue