Enable game music

This commit is contained in:
Jaidyn Ann 2020-09-21 19:21:19 -05:00
parent ed5e2484fd
commit 5f310b1f2a

View File

@ -336,8 +336,9 @@ function game_load ()
dieParticle:setLinearAcceleration(-200, -200, 200, 200) -- Random movement in all directions.
dieParticle:setSpeed(40, 50); dieParticle:setColors(1, 1, 1, 1, 1, 1, 1, 0)
-- bgm = love.audio.newSource( "art/music/game.ogg", "static")
-- bgm:play()
bgm:stop()
bgm = love.audio.newSource( "art/music/game.ogg", "static")
bgm:play()
end
--------------------