我创建了简单的MonoGame 3.4 android项目来测试音频播放。 我使用SoundEffect来播放声音。 我试过XNB和WAV文件。什么都行不通......没声音。
有人能解释我如何在Android上播放声音吗?
答案 0 :(得分:0)
SoundEffect sound;
SoundEffectInstance instance;
sound = Content.Load <SoundEffect>("yourSound");
instance = sound.CreateInstance();
instance.Play();
我希望这会有所帮助