diff skaapsteker/sprites/base.py @ 144:6b488e1351a5

Buggy ground implementation. Make the world less bouncy
author Neil Muller <drnlmuller@gmail.com>
date Tue, 05 Apr 2011 15:46:13 +0200
parents e1dd3b785269
children 60138b935bc0
line wrap: on
line diff
--- a/skaapsteker/sprites/base.py	Tue Apr 05 15:00:31 2011 +0200
+++ b/skaapsteker/sprites/base.py	Tue Apr 05 15:46:13 2011 +0200
@@ -71,6 +71,8 @@
     mobile = False
     gravitates = False
     collides_with = set([PC_LAYER, MONSTER_LAYER])
+    is_ground = True
+    bounce_factor = (0.0, 0.0)
 
     def __init__(self, pos, image):
         Sprite.__init__(self)