小球游戏

发布时间 2023-12-29 02:49:16作者: 徐嘉俊
import sys    
import pygame

pygame.init()
size = width, height = 1000, 700
screen = pygame.display.set_mode(size)
color = (0, 0, 0)

ball = pygame.image.load("ball(1).png")
ballrect = ball.get_rect()

speed = [5, 5]
clock = pygame.time.Clock()
while True:
clock.tick(60)

for event in pygame.event.get():
if event.type == pygame.QUIT:
sys.exit()
ballrect = ballrect.move(speed)

if ballrect.left < 0 or ballrect.right > width:
speed[0] = -speed[0]
if ballrect.top < 0 or ballrect.bottom > height:
speed[1] = -speed[1]
screen.fill(color)
screen.blit(ball, ballrect)
screen.blit(ball, ballrect)
pygame.display.flip()

 


pygame.quit()