Gameplay video

I uploaded a gameplay video to YouTube. Check it out here (or go check out the game itself!):

(log in to comment)

Comments

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()

Thanks for the report! Yep, just to be clear, you need to change line 29 of blob.py from

	img = pygame.Surface((N, N)).convert()

to

	img = pygame.Surface((N, N)).convert_alpha()
I've changed it in the repository for any future versions.