Skip to content

Instantly share code, notes, and snippets.

@hortonew
Last active December 11, 2015 10:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hortonew/4590382 to your computer and use it in GitHub Desktop.
Save hortonew/4590382 to your computer and use it in GitHub Desktop.
Pyglet - Play Single Sound
import pyglet
from pyglet.window import key
#Put sound files in a folder called "resources"
pyglet.resource.path = ['resources']
pyglet.resource.reindex()
#Create sound object for laser
screen = pyglet.window.Window(800,600)
laser = pyglet.resource.media('laser.wav')
@screen.event
def on_key_press(symbol, modifiers):
if symbol == key.SPACE:
laser.play()
def update(dt):
#update objects here
pass
if __name__ == "__main__":
pyglet.clock.schedule_interval(update, 1/120.0)
pyglet.app.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment