Added translucency.

This commit is contained in:
Sakse Dalum
2012-08-08 14:52:08 +02:00
parent 82388afde3
commit f27c8eb2e7
6 changed files with 39 additions and 6 deletions

View File

@@ -106,7 +106,7 @@ class Game(object):
"""
Draw all game objects.
"""
self.window.fill((0, 0, 0))
self.window.fill((0, 255, 255))
for obj in self.objs:
if hasattr(obj, 'draw'):
obj.draw(self.window)