help with sound track... in game
Posted: Tue Aug 11, 2015 5:52 pm
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...
i will that the audio is repeating.....
sorry for my bad english.
this is my code.....
can somebody help me for solve this function....
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...
i will that the audio is repeating.....
sorry for my bad english.
this is my code.....
Code: Select all
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