-
Notifications
You must be signed in to change notification settings - Fork 44
Playing songs
koca2000 edited this page Apr 10, 2018
·
6 revisions
There are 3 types of SongPlayer:
- RadioSongPlayer
- PositionSongPlayer
- NoteBlockSongPlayer
Play song for all added players no matter where they are.
Song song; // Preloaded song
// Create RadioSongPlayer.
RadioSongPlayer rsp = new RadioSongPlayer(song);
// Add player to SongPlayer so he will hear the song.
rsp.addPlayer(Player);
// Start RadioSongPlayer playback
rsp.setPlaying(true);