up-editor/tiles.lua

11 lines
199 B
Lua
Raw Normal View History

2020-02-21 12:43:31 +01:00
local img_path = "img/"
tiles = {
2020-02-21 15:10:49 +01:00
love.graphics.newImage(img_path.."ground.png"),
love.graphics.newImage(img_path.."elevator1.png"),
false,
2020-02-21 12:43:31 +01:00
}
2020-02-21 15:10:49 +01:00
tiles_char = { '0', '^', '.' }
2020-02-21 12:43:31 +01:00
selected_tile = 1