up-editor/tiles.lua

16 lines
506 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 15:35:35 +01:00
love.graphics.newImage(img_path.."glue.png"),
love.graphics.newImage(img_path.."ice.png"),
2020-02-25 14:01:13 +01:00
love.graphics.newImage(img_path.."secret.png"),
2020-02-21 15:35:35 +01:00
love.graphics.newImage(img_path.."coin.png"),
love.graphics.newImage(img_path.."jitem.png"),
2020-02-21 12:43:31 +01:00
}
2020-02-25 14:01:13 +01:00
tiles_char = { '0', 'v', '^', '#', '~', 's', 'c', 'j' }
2020-02-21 12:43:31 +01:00
selected_tile = 1