Gameplay video
I uploaded a gameplay video to YouTube. Check it out here (or go check out the game itself!):
(log in to comment) Thanks for the report! Yep, just to be clear, you need to change line 29 of blob.py from toComments
img = pygame.Surface((N, N)).convert()
img = pygame.Surface((N, N)).convert_alpha()
I've changed it in the repository for any future versions.
paulpaterson on 2016/09/14 02:41:
I had a problem with numpy: "ValueError: unsupport colormasks for 3D reference array". (Py2.7, OSX)I googled it and luckily enough the top link was from one of your earlier pyweek entries! I hunted down the fix and looks like one of the surfaces was missing its convert_alpha(),
img.py, line 29 should be: img = pygame.Surface((N, N)).convert_alpha()