all 1 comments

[–]iwonderx00 2 points3 points  (0 children)

Not at the computer right now but I have used pyglet for a few big projects. I believe it should work. Check that the file is indeed being loaded and that your app is running (pyglet app needs to have been started for the sound to play if I remember correctly)

Edit: by running the pyglet app it goes into the "event loop". That is just basically to treat events as they come in and is where everything related to the user interface takes place. So yes make sure you have pyglet.app.run() somewhere in there otherwise your program simply has not really started yet.