maybe the title make you confuse, so i'll make this clear
how to play next audio track when the recent audio playback end normally.
<<audio "bgm_track-one" play>> <<audio "bgm_track-two" play>>
that code will play both track together but how to make track-two play after track-one end ?
i know there's already macro for playlist, but can i make multiple playlists ? because as you can see in
http://www.motoslave.net/sugarcube/docs/macros.html#macros-setplaylist , there's no additional information about how to make another playlist
what i want is just like this
<<setplaylist "bgm_track-one" "bgm_track-two">>
<<setplaylist2 "bgm_track-three" "bgm_track-four" "bgm_another-track">>
is this possible ?
Comments
That said, you can easily support multiple playlists (though only one may be active) by simply calling the
<<setplaylist>>
macro again. To make switching between these playlists easier, I'd suggest using widgets. For example: Usage:If you actually need multiple playlists active and playing concurrently, then you'd, currently, have to do that manually.