hello i making a game with a function if you press f1 then its gonna play an audio ( music ).... but the problem is that i have 3 different audio's
and i want make a sort of a tracklist it with a script.... so the problem is the first audio ( music ) is working but the second not and the third not...
if key == "f1" and love.audio.play(love.audio.newSource("Assets/sounds/BG_MUSIC/BG_MUSIC.mp3")) then
if love.audio.stop(love.audio.newSource("Assets/sounds/BG_MUSIC/BG_MUSIC.mp3")) then
love.audio.play(love.audio.newSource("Assets/sounds/BG_MUSIC/BG_MUSIC_1.mp3"))
end
if love.audio.stop(love.audio.newSource("Assets/sounds/BG_MUSIC/BG_MUSIC_1.mp3")) then
love.audio.play(love.audio.newSource("Assets/sounds/BG_MUSIC/BG_MUSIC_2.mp3"))
end
if love.audio.stop(love.audio.newSource("Assets/sounds/BG_MUSIC/BG_MUSIC_2.mp3")) then
love.audio.play(love.audio.newSource("Assets/sounds/BG_MUSIC/BG_MUSIC.mp3"))
end
end
local tracklist = {}
function love.load()
tracklist[1] = love.audio.newSource("Assets/sounds/BG_MUSIC/BG_MUSIC.mp3")
tracklist[2] = love.audio.newSource("Assets/sounds/BG_MUSIC/BG_MUSIC1.mp3")
tracklist[3] = love.audio.newSource("Assets/sounds/BG_MUSIC/BG_MUSIC2.mp3")
tracklist.current = 1
tracklist.count = 3
tracklist[tracklist.current]:play()
end
function love.update(dt)
if tracklist[tracklist.current]:isStopped() then
tracklist.current = (tracklist.current % tracklist.count) + 1
tracklist[tracklist.current]:play()
end
end
Though the transitions probably won't be seamless, unless your tracks have fadeouts.
Edit: davisdude is right, so i fixed this post. thanks
Last edited by zorg on Thu Aug 13, 2015 9:43 pm, edited 1 time in total.
Me and my stuff True Neutral Aspirant. Why, yes, i do indeed enjoy sarcastically correcting others when they make the most blatant of spelling mistakes. No bullying or trolling the innocent tho.
if love.audio.isStopped(tracklist[tracklist.current]) then
tracklist.current = (tracklist.current % tracklist.count) + 1
tracklist[tracklist.current]:play()
end
if love.audio.stop(tracklist[tracklist.current]) then
tracklist.current = (tracklist.current % tracklist.count) + 1
tracklist[tracklist.current]:play()
end
i got no error but the problem is the background music wont play
What he meant was Source:isStopped (I'm assuming). love.audio.stop returns true because the song was successfully stopped, which is also why you can't hear it...
GitHub | MLib - Math and shape intersections library | Walt - Animation library | Brady - Camera library with parallax scrolling | Vim-love-docs - Help files and syntax coloring for Vim
davisdude wrote:What he meant was Source:isStopped (I'm assuming). love.audio.stop returns true because the song was successfully stopped, which is also why you can't hear it...
Yep, i went ahead and edited my post, thanks again!
Me and my stuff True Neutral Aspirant. Why, yes, i do indeed enjoy sarcastically correcting others when they make the most blatant of spelling mistakes. No bullying or trolling the innocent tho.
davisdude wrote:What he meant was Source:isStopped (I'm assuming). love.audio.stop returns true because the song was successfully stopped, which is also why you can't hear it...
Yep, i went ahead and edited my post, thanks again!
thx for edit your code ... now it works ... it plays automaticly and if the music stops it goes to the next..... im very thankfull