summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2018-07-08 19:23:13 +0200
committerRicardo Wurmus <rekado@elephly.net>2018-07-27 17:15:43 +0200
commitf260cc40384793e5d0ef4be741060eec72fc57f5 (patch)
tree602b7ad518d25b2d13b4f25146a024baa94b8722
parentd34103502d76ac1a0d52e9dc0735e37f6671ef0d (diff)
Reduce walk speed.
-rw-r--r--scenes/game.scm2
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)))