1

我的代码:变量:

    //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。如何使整个歌曲循环?因为当我开始调试时,它会在一段时间后切断并再次循环。有什么建议么?

4

1 回答 1

1

尝试使用 .mp3 而不是 .wma 来Song上课。
您的代码似乎正确。

于 2013-08-14T00:46:32.713 回答