0

andEngineを使ってゲームを開発しています。このゲームの背景音を追加したいです。サウンドを実装してみましたが、サウンドが再生されません。助けてください。これが私のコードです:

onLoadEngine()

return new Engine(new EngineOptions(true, ScreenOrientation.LANDSCAPE,
                new FillResolutionPolicy(), this.mCamera).setNeedsSound(true))

onLoadResources()

 Sound bgSound;
 SoundFactory.setAssetBasePath("gfx/");
 this.bgSound = SoundFactory.createSoundFromAsset(this.mEngine.getSoundManager(), this,              "bg.mid");
 bgSound.setLoopCount(-1);
 bgSound.play();
4

1 に答える 1

1

次の 2 行をonCreateScene()メソッドに移動します。

 bgSound.setLoopCount(-1);
 bgSound.play();

また、SoundFactory.createMusicFromAsset代わりに呼び出しますSoundFactory.createSoundFromAsset

于 2012-09-05T07:08:00.037 に答える