spaceblaster: More timing changes

This commit is contained in:
Bryan Schumaker 2010-12-31 12:03:35 -05:00
parent 6b1095d972
commit 0aa9d1e959
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ SPACE = pygame.K_SPACE
class ArcadeState(games.GameState):
def __init__(self, GAME):
self.ship = ship.CSE1670(GAME, (10, 10), (0.9, 0.9))
self.ship = ship.CSE1670(GAME, (10, 10), (0.7, 0.7))
self.fire_interval = 0
self.beams = []
self.k_left = False

View File

@ -16,4 +16,4 @@ class Beam(GO):
class CSEBeam(Beam):
def __init__(self, GAME, pos):
Beam.__init__(self, GAME, "blue", pos, (0, -1.1))
Beam.__init__(self, GAME, "blue", pos, (0, -1.4))