python pygame 小球游戏

匿名 (未验证) 提交于 2019-12-02 22:51:30
# -*- coding:utf-8 -*-import sysimport pygamepygame.init()size = width,height=640,480screen = pygame.display.set_mode(size)color = (0,0,0)ball = pygame.image.load('ball.jpg')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)    pygame.display.flip()pygame.quit()
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!