Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 gdx lib 在我的游戏中播放声音。
请参阅下面我的代码:
Sound sound = Gdx.audio.newSound(Gdx.files.internal(Assets.SOUND_DIR_PATH + "test.wav")); sound.play(0.75f);
当我在 sound.play() 线上使用断点进行调试时它工作正常,但当我不调试时它不起作用......
任何帮助将不胜感激 !
尝试只输入文件名,像这样
Sound sound = Gdx.audio.newSound(Gdx.files.internal("test.wav")); sound.play(0.75f);
这样对我来说很好。