summaryrefslogtreecommitdiffhomepage
path: root/ground.lua
diff options
context:
space:
mode:
authorAki <nthirtyone@gmail.com>2016-05-12 21:41:05 +0200
committerAki <nthirtyone@gmail.com>2016-05-12 21:41:05 +0200
commit33fd541bf44c718133be540f89d7dff2c723c282 (patch)
tree848d2497a5c7ec17174ee9e9304f84eec7a90df8 /ground.lua
parentff42a92b1a622a9f7511bff28f1b52298af52ed5 (diff)
downloadroflnauts-33fd541bf44c718133be540f89d7dff2c723c282.zip
roflnauts-33fd541bf44c718133be540f89d7dff2c723c282.tar.gz
roflnauts-33fd541bf44c718133be540f89d7dff2c723c282.tar.bz2
Horizontal movement #2
Custom linear damping and some other changes to smooth everything.
Diffstat (limited to 'ground.lua')
-rw-r--r--ground.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/ground.lua b/ground.lua
index e0c490a..1034d71 100644
--- a/ground.lua
+++ b/ground.lua
@@ -19,6 +19,6 @@ function Ground:new (world, x, y, shape, sprite)
o.fixture = love.physics.newFixture(o.body, o.shape)
o.sprite = love.graphics.newImage(sprite)
o.fixture:setCategory(1)
- o.fixture:setFriction(0.75)
+ o.fixture:setFriction(0.2)
return o
end \ No newline at end of file