audio manager, moved stuff from (removed) enums into animations, tiledata. new sfx and music enum files

This commit is contained in:
lustlion
2022-02-08 17:04:36 +01:00
parent cbcf90de2d
commit 2ce41d541f
9 changed files with 215 additions and 152 deletions

22
data/tiledata.lua Normal file
View File

@@ -0,0 +1,22 @@
levelProperties = {
pos = {
x = 0,
y = 0
},
-- im unsure why there's offset at all, here
offset = {
x = 0,
y = 0
}
}
tileset = {
bricks = love.graphics.newImage("assets/tileset/bricks.png"),
library = love.graphics.newImage("assets/tileset/library.png")
}
tileProperties = {
width = 16,
height = 16,
scale = 1,
}