up-editor/tiles.lua

11 lines
239 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.."spike.png"),
2020-02-21 15:10:49 +01:00
love.graphics.newImage(img_path.."elevator1.png"),
2020-02-21 12:43:31 +01:00
}
tiles_char = { '0', 'v', '^' }
2020-02-21 12:43:31 +01:00
selected_tile = 1