diff --git a/sonic-radiance.love/game/modules/world/actors/player.lua b/sonic-radiance.love/game/modules/world/actors/player.lua index 4f11d64..3371728 100644 --- a/sonic-radiance.love/game/modules/world/actors/player.lua +++ b/sonic-radiance.love/game/modules/world/actors/player.lua @@ -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