From 33fd541bf44c718133be540f89d7dff2c723c282 Mon Sep 17 00:00:00 2001 From: Aki Date: Thu, 12 May 2016 21:41:05 +0200 Subject: Horizontal movement #2 Custom linear damping and some other changes to smooth everything. --- ground.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ground.lua') 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 -- cgit v1.1