我的代码:变量:
//Menu Song
Song mainMenuTheme;
bool songstart = false;
加载内容()方法:
//Load the song
mainMenu = Content.Load<Song>("musics\\mainMenuTheme");
MediaPlayer.IsRepeating = true;
在 Update() 方法中:
//Start the song
if (!songstart)
{
MediaPlayer.Play(mainMenuTheme);
songstart = true;
}
所以这首歌是 .wma 格式,6.32MB,时长是 00:01:36。如何使整个歌曲循环?因为当我开始调试时,它会在一段时间后切断并再次循环。有什么建议么?