butcher mushroom texture to match mesh UV map, add Suite.mp3

This commit is contained in:
Zack Buhman 2026-03-23 03:06:26 -05:00
parent a93fa23cc4
commit 8c7e3edf86
5 changed files with 21 additions and 17 deletions

BIN
Suite.mp3 Normal file

Binary file not shown.

View File

@ -6,6 +6,6 @@ rm -rf dist/
mkdir dist/ mkdir dist/
[ -f "test.so" ] && cp test.so dist/ [ -f "test.so" ] && cp test.so dist/
[ -f "test.dll" ] && cp test.dll dist/ [ -f "test.dll" ] && cp test.dll dist/
cp conf.lua main.lua dist/ cp Suite.mp3 conf.lua main.lua dist/
( cd dist/ ; zip -r ../test.zip . ) ( cd dist/ ; zip -r ../test.zip . )

View File

@ -70,6 +70,10 @@ void update(float time);
test = ffi.load("./" .. lib_name) test = ffi.load("./" .. lib_name)
end end
test.load(source_path) test.load(source_path)
local bgm = love.audio.newSource("Suite.mp3", "stream")
bgm:setLooping(true)
bgm:play()
end end
local update = function(time) local update = function(time)

File diff suppressed because one or more lines are too long

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB