summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--camera.lua7
-rw-r--r--conf.lua4
2 files changed, 6 insertions, 5 deletions
diff --git a/camera.lua b/camera.lua
index 7a02bf1..9c594fb 100644
--- a/camera.lua
+++ b/camera.lua
@@ -7,7 +7,7 @@ Camera = {
y = 0,
dest_x = 0,
dest_y = 0,
- scale = 4,
+ scale = 2,
shake = 0,
timer = 0,
delay = 0,
@@ -112,6 +112,7 @@ end
function Camera:follow ()
local m = self.world.map
local x,y,i = m.center_x, m.center_y, 1
+ print(x,y, love.graphics.getHeight(), self.scale, (love.graphics.getHeight()/2)/self.scale)
for k,point in pairs(self.world.Nauts) do
if point.body:getX() > m.center_x - m.width/2 and point.body:getX() < m.center_x + m.width/2 and
point.body:getY() > m.center_y - m.height/2 and point.body:getY() < m.center_y + m.height/2 then
@@ -121,7 +122,7 @@ function Camera:follow ()
end
end
x = x / i - love.graphics.getWidth()/self.scale/2
- y = y / i - love.graphics.getHeight()/self.scale/2
+ y = y / i - (love.graphics.getHeight()/2)/self.scale
return x,y
end
@@ -136,7 +137,7 @@ function Camera:update (dt)
self.delay = self.delay - dt
end
else
- self:setDestination(self:follow())
+ --self:setDestination(self:follow())
end
local dx, dy = self:getDestination()
dx = (dx - self.x) * 6 * dt
diff --git a/conf.lua b/conf.lua
index 31f1ff5..4d9f961 100644
--- a/conf.lua
+++ b/conf.lua
@@ -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 = 290*4
- t.window.height = 180*4
+ t.window.width = 290*2
+ t.window.height = 180*2
t.console = true
end \ No newline at end of file