选择要在 Pygame 中播放的声音

Choosing which sound to play in Pygame

在 Pygame 中,我如何定义我想在某些 "if" 事件中播放的声音?我已经能够将它们都加载到我只是遇到了不按需播放的问题。感谢您提前帮助我。

您需要使用声音对象来播放声音。

if condition_one_true:
    sound_one = Sound('sound1.mp3')
    sound_one.play()

if condition_two_true:
    sound_two= Sound('sound2.mp3')
    sound_two.play()