Diskuze: Problém s pygame - bug?
Zobrazeno 3 zpráv z 3.
//= Settings::TRACKING_CODE_B ?> //= Settings::TRACKING_CODE ?>
Ahoj, problém je v odsazení, poslední řádky mají být o jeden blok vlevo:
def update(self):
"""Update the ship's position based on the movement flag."""
# Update the ship's center value, not the rect.
if self.moving_right and self.rect.right < self.screen_rect.right:
self.center += self.ai_settings.ship_speed_factor
if self.moving_left and self.rect.left > 0:
self.center -= self.ai_settings.ship_speed_factor
# Update rect object from self.center
self.rect.centerx = self.center
Dík moc, tohle by mě nenapadlo.
Zobrazeno 3 zpráv z 3.