mirror of
https://github.com/Noratrieb/game-wip-dontplay.git
synced 2026-01-16 20:35:02 +01:00
Lower default player hspeed to 3.0
This commit is contained in:
parent
05c516e210
commit
d6f3eb07f2
1 changed files with 3 additions and 3 deletions
|
|
@ -75,11 +75,11 @@ impl App {
|
||||||
self.do_freecam();
|
self.do_freecam();
|
||||||
} else {
|
} else {
|
||||||
let spd = if self.input.down(Key::LShift) {
|
let spd = if self.input.down(Key::LShift) {
|
||||||
16.0
|
8.0
|
||||||
} else if self.input.down(Key::LControl) {
|
} else if self.input.down(Key::LControl) {
|
||||||
256.0
|
128.0
|
||||||
} else {
|
} else {
|
||||||
4.0
|
3.0
|
||||||
};
|
};
|
||||||
self.game.player.hspeed = 0.;
|
self.game.player.hspeed = 0.;
|
||||||
if self.input.down(Key::A) {
|
if self.input.down(Key::A) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue