|
|
|
@ -7,7 +7,7 @@ class Spawner(BaseObject):
|
|
|
|
|
def __init__(self,game,tiles,speedmargin=5):
|
|
|
|
|
spawnpoint = random.choice(tiles.spawns)
|
|
|
|
|
super().__init__(spawnpoint[0],spawnpoint[1],game)
|
|
|
|
|
self.sprite = game.sprite_lib["lemmings/shadow.png"]
|
|
|
|
|
self.sprite = game.sprite_lib["lemmings/shadow.png"].copy()
|
|
|
|
|
self.speedmargin = speedmargin
|
|
|
|
|
self.fallsprite = game.sprite_lib["lemmings/falling.png"]
|
|
|
|
|
self.distance = game.DISPLAY_HEIGHT
|
|
|
|
@ -31,8 +31,6 @@ class Spawner(BaseObject):
|
|
|
|
|
def draw(self):
|
|
|
|
|
# Draw the shadow
|
|
|
|
|
alphavalue = 1-self.timer.getratio()
|
|
|
|
|
alphamax = 0.5
|
|
|
|
|
alphavalue/=alphamax
|
|
|
|
|
alphavalue = min(1,alphavalue)*255
|
|
|
|
|
self.sprite.set_alpha(alphavalue)
|
|
|
|
|
self.game.lib.drawcenter(self.game,self.sprite,self.rect[0]-self.game.globals["camerax"],self.rect[1]-self.game.globals["cameray"])
|
|
|
|
|