Added secret path object.

This commit is contained in:
KikooDX 2020-02-25 14:01:13 +01:00
parent 6fb227cf39
commit c1d2b71a8c
3 changed files with 3 additions and 1 deletions

1
.gitignore vendored
View File

@ -5,6 +5,7 @@ luac.out
img/*
img
up-editor.love
screens/*
# luarocks build files
*.src.rock

BIN
force_img/secret.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 126 B

View File

@ -6,9 +6,10 @@ tiles = {
love.graphics.newImage(img_path.."elevator1.png"),
love.graphics.newImage(img_path.."glue.png"),
love.graphics.newImage(img_path.."ice.png"),
love.graphics.newImage(img_path.."secret.png"),
love.graphics.newImage(img_path.."coin.png"),
love.graphics.newImage(img_path.."jitem.png"),
}
tiles_char = { '0', 'v', '^', '#', '~', 'c', 'j' }
tiles_char = { '0', 'v', '^', '#', '~', 's', 'c', 'j' }
selected_tile = 1