[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[pygame] which way to play sound?



Which of these is the better way to play sound effects?

MySound.play ()

or

channel = pygame.mixer.find_channel ( True )
if channel:
    channel.play ( MySound )

or

some other way?