2017-04-22 35 views
-3

所以我用python製作遊戲,當我拍攝我的飛行物體時,它會爆炸,但爆炸後不會再有物體落下。我需要知道如何解決這個問題,以便物體不斷下降,以便我射擊和摧毀。這裏是我的代碼:如何讓物體不斷下降?蟒蛇遊戲

SPEED = 3 
#set initial location of image 
image_x = random.randrange(0, 480) 
image_y = -50 

image_y = image_y + SPEED 
if image_y > 640: 
    image_x = random.randrange(0, 480) 
    image_y = -25 

def __init__(self, x = 40, y = 40, speed = 2, odds_change = 200): 
    """ Initialize the Fly object. """ 

    super(Fly, self).__init__(image = Fly.image, 
          y = y, x = random.randrange(0, 480), 
          dy = speed, 
         dx = speed) 
    self.bottom = 0 

    self.odds_change = odds_change 
    self.time_til_drop = 500 

def update(self): 
    """ Determine if direction needs to be reversed.""" 
    if self.left < 0 or self.right > games.screen.width: 
     self.dx = -self.dx 
    elif random.randrange(self.odds_change) == 0: 
     self.dx = -self.dx 

    self.check_drop() 

def check_drop(self): 
    """ Decrease countdown or drop fly and reset countdown. """ 
    if self.time_til_drop > 0: 
     self.time_til_drop -= 1 
    else: 
     self.time_til_drop = 500 
     new_fly = Fly(x = self.x) 
     games.screen.add(new_fly) 

     #set buffer to approx 30% of fly height regardless of fly speed 
     self.time_til_drop = int(new_fly.height * 1000/Fly.SPEED) + 1000 

def die(self): 
    """Destroy Fly.""" 
    #If fly is destroyed, then continue playing 
    self.destroy() 

回答

0

你實際上沒有使用類,你只是寫函數。