summaryrefslogtreecommitdiff
path: root/main.lua
diff options
context:
space:
mode:
Diffstat (limited to 'main.lua')
-rw-r--r--main.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.lua b/main.lua
index d014b96..066ff00 100644
--- a/main.lua
+++ b/main.lua
@@ -1,7 +1,7 @@
-local VIRTUAL_WIDTH, VIRTUAL_HEIGHT = 16*10*3, 9*10*3
+local VIRTUAL_WIDTH, VIRTUAL_HEIGHT = 16*10*5, 9*10*5
local CANVAS_PADDING = 6
-DEBUG = false
+DEBUG = true
local CANVAS_WIDTH = VIRTUAL_WIDTH + CANVAS_PADDING
local CANVAS_HEIGHT = VIRTUAL_HEIGHT + CANVAS_PADDING
@@ -23,7 +23,7 @@ local currentState = "game"
local currentMapPath = "assets/maps/tilemap.lua"
local currentTilesets = {
tileset = { path = "assets/maps/tileset.png", tilewidth = 16, tileheight = 16 },
- ground = { path = "assets/maps/ground.png", tilewidth = 8, tileheight = 8 },
+ misc = { path = "assets/maps/simples_pimples.png", tilewidth = 16, tileheight = 16 },
}
local world = nil