From 22f19497805c0ee4f4e5cfb6606673a9983dc191 Mon Sep 17 00:00:00 2001 From: Aki Date: Sun, 15 May 2016 22:22:04 +0200 Subject: Making it readable --- conf.lua | 4 ++-- world.lua | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/conf.lua b/conf.lua index 434f7f9..6a9ccb2 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 = 1260 - t.window.height = 800 + t.window.width = 315*4 + t.window.height = 200*4 t.console = false end \ No newline at end of file diff --git a/world.lua b/world.lua index 963ae44..098e268 100644 --- a/world.lua +++ b/world.lua @@ -24,12 +24,12 @@ function World:new() o.world = love.physics.newWorld(0, 9.81*64, true) o.world:setCallbacks(o.beginContact, o.endContact) -- Empty tables for objects - local c = {} - o.Clouds = c local n = {} o.Nauts = n local p = {} o.Platforms = {} + local c = {} + o.Clouds = c -- Create camera o.camera = Camera:new() return o @@ -90,12 +90,12 @@ function World:draw() -- Draw ground for _,platform in pairs(self.Platforms) do - platform:draw(offset_x, offset_y, scale, false) + platform:draw(offset_x, offset_y, scale, debug) end -- Draw player for _,naut in pairs(self.Nauts) do - naut:draw(offset_x, offset_y, scale, false) + naut:draw(offset_x, offset_y, scale, debug) end end -- cgit v1.1