12345678910 |
- sounds = {
- hihat = love.audio.newSource("sfx/hi-hat.wav", "static"),
- death = love.audio.newSource("sfx/death.wav", "static"),
- item = love.audio.newSource("sfx/item-get.wav", "static"),
- toggle = love.audio.newSource("sfx/toggle.wav", "static"),
- }
- sounds.item:setVolume(0.5)
- sounds.toggle:setVolume(0.5)
|