Lower default player hspeed to 3.0

This commit is contained in:
crumblingstatue 2023-04-04 20:30:28 +02:00
parent 05c516e210
commit d6f3eb07f2

View file

@ -75,11 +75,11 @@ impl App {
self.do_freecam();
} else {
let spd = if self.input.down(Key::LShift) {
16.0
8.0
} else if self.input.down(Key::LControl) {
256.0
128.0
} else {
4.0
3.0
};
self.game.player.hspeed = 0.;
if self.input.down(Key::A) {