diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-07-08 19:23:13 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-07-27 17:15:43 +0200 |
commit | f260cc40384793e5d0ef4be741060eec72fc57f5 (patch) | |
tree | 602b7ad518d25b2d13b4f25146a024baa94b8722 | |
parent | d34103502d76ac1a0d52e9dc0735e37f6671ef0d (diff) |
Reduce walk speed.
-rw-r--r-- | scenes/game.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scenes/game.scm b/scenes/game.scm index 1011b2d..4e6be37 100644 --- a/scenes/game.scm +++ b/scenes/game.scm @@ -47,7 +47,7 @@ (define-class <character> (<node-2d>) (velocity #:getter velocity #:init-form (vec2 0.0 0.0)) - (walk-speed #:accessor walk-speed #:init-form 1.2) + (walk-speed #:accessor walk-speed #:init-form 0.8) (direction #:accessor direction #:init-form '(idle)) (hitbox #:getter hitbox #:init-form (make-rect 8.0 0.0 16.0 16.0))) |