2


我正在使用 Andengine 开发游戏,我正在使用Base Game Activity具有多个场景的游戏。我想在其中加载背景音乐。但是我不知道如何在使用时在引擎Base Game Activity中启用声音。我在网络中找到了这段代码来启用声音。

return new Engine(new EngineOptions(true, ScreenOrientation.LANDSCAPE, new RatioResolutionPolicy(CAMERA_WIDTH, CAMERA_HEIGHT), camera).setNeedsMusic(true));

但是这个是写的 onLoadScene(),我不知道如何在基本游戏活动onLoadScene()中暗示。我可以 onLoadScene()在基本游戏活动中覆盖还是有任何其他方法可以实现这一点,请帮助我......

任何建议对我都是有效的,感谢所有的先进......

4

1 回答 1

4

尝试类似的东西

final EngineOptions engineOptions = new EngineOptions(true, ScreenOrientation.LANDSCAPE_FIXED,
        new RatioResolutionPolicy(CAMERA_WIDTH, CAMERA_HEIGHT), mCamera);
engineOptions.getAudioOptions().setNeedsSound(true);

和/或

engineOptions.getAudioOptions().setNeedsMusic(true);
于 2013-01-18T19:25:55.867 回答