diff options
Diffstat (limited to 'lib/player.fnl')
-rw-r--r-- | lib/player.fnl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/player.fnl b/lib/player.fnl index d40e980..d10fe81 100644 --- a/lib/player.fnl +++ b/lib/player.fnl @@ -23,8 +23,8 @@ ;; (set self.direction (% (- self.direction 0.1) (* math.pi 2))) (when controls.right (set self.target-spin (+ self.target-spin 0.15))) - (set self.direction (% (+ self.direction (* self.target-spin 0.1)) (* math.pi 2))) - (set self.target-spin (* self.target-spin 0.9)) + (set self.direction (% (+ self.direction (* self.target-spin 0.2)) (* math.pi 2))) + (set self.target-spin (* self.target-spin 0.8)) (set music-state.forward controls.up) (when controls.up (local v (entity.velocity self)) |