Game uploaded!
Download from the project page.If you catch any bugs before the upload deadline, please let me know here!
EDIT: v2 uploaded with more info in the README, support for numpy version < 1.12, a more helpful error on server connect failure. v1 should still work fine as long as your numpy is up to date.
(log in to comment)
Comments
brew install sdl sdl_image sdl_mixer sdl_ttf portmidiIf that doesn't work, you can disable the sound with minimal impact to the game. Use the command line flag:
python3 run_game.py --noaudioIf it still gives the error, try commenting out or removing line 10 of src/main.py:
pygame.mixer.init()and run again with the --noaudio flag
I found I could fix it by adding these lines to the top of "run_game.py":
import pygame
pygame.init()
pygame.mixer.init()
Note, this is the only game for which I've had this issue: something strange in pygame for osx?
Noelle on 2019/04/02 16:03:
any ideas why I'm getting this error and/or how to fix?pygame.error: Failed to start CoreAudio: AudioUnitSetProperty (kAudioUnitProperty_StreamFormat)