diff options
-rw-r--r-- | camera.lua | 6 | ||||
-rw-r--r-- | conf.lua | 4 |
2 files changed, 5 insertions, 5 deletions
@@ -45,7 +45,7 @@ end -- Move follow function Camera:follow () - local x,y,i = 105, 120, 1 + local x,y,i = 145, 90, 1 for k,point in pairs(self.world.Nauts) do if point.body:getX() > -20 and point.body:getX() < 310 and point.body:getY() > -70 and point.body:getY() < 200 then @@ -63,7 +63,7 @@ end function Camera:update (dt) self:follow() local dx, dy = self:getDestination() - dx = (dx - self.x) * 8 * dt - dy = (dy - self.y) * 8 * dt + dx = (dx - self.x) * 6 * dt + dy = (dy - self.y) * 6 * dt self:setPosition(self.x + dx, self.y + dy) end
\ No newline at end of file @@ -2,7 +2,7 @@ function love.conf(t) t.title = "notnauts" t.version = "0.10.1" t.window.icon = "assets/icon.png" - t.window.width = 315*4 - t.window.height = 200*4 + t.window.width = 290*4 + t.window.height = 180*4 t.console = true end
\ No newline at end of file |