improvement: pull a bit down the view center

This commit is contained in:
Kazhnuz 2019-07-27 13:56:14 +02:00
parent b92f441d40
commit 1830e390bb

View file

@ -63,6 +63,11 @@ function Player:setDirection(direction)
end
end
function Player:getViewCenter()
local x, y = Player.super.getViewCenter(self)
return x, y-16
end
function Player:draw()
Player.super.draw(self)
end