Mercurial > touhou
diff pytouhou/game/bullet.pyx @ 388:ac2891afb0bb
Make particles behave as in the original game.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Sun, 21 Oct 2012 23:02:40 +0200 |
parents | 690b5faaa0e6 |
children | b11953cf1d3b |
line wrap: on
line diff
--- a/pytouhou/game/bullet.pyx +++ b/pytouhou/game/bullet.pyx @@ -135,7 +135,7 @@ cdef class Bullet(object): def collide(Bullet self): self.cancel() - self._game.new_particle((self.x, self.y), 1, 3., 256) #TODO: find the real size. + self._game.new_particle((self.x, self.y), 10, 256) #TODO: find the real size. def cancel(Bullet self):