pygame旋转图像最简示例_按任意键继续执行

pygame旋转图像最简示例_按任意键继续执行

"""
   pygame旋转图像最简示例_按任意键继续执行.py
   本程序会显示一个女孩的图像,按任意键会旋转她。
   再按任意键会关闭Pygame窗口。
   
"""
import pygame

def press_any_key_to_continue():
    """
       不断检测有没有按任意键,如果按了则退出while循环
    """
    while not pygame.event.get(pygame.KEYDOWN):
        pass
    
image = "girl.png"
width,height = 480,360
中心点 = width//2,height//2
screen = pygame.display.set_mode((width,height))
pygame.display.set_caption("pygame旋转图像最简示例")

image = pygame.image.load(image).convert_alpha()
image_rect = image.get_rect(center=中心点) # 获取矩形对象
screen.blit(image,image_rect)              # 渲染在screen上
pygame.display.update()                    # 更新显示

press_any_key_to_continue()                # 按任意键继续
 

需要查看完整源码,请

成为会员后,登陆才能继续浏览!联系微信scratch8即可办理会员。
(会员专属:能浏览所有文章,下载所有带链接的Python资源。)

李兴球

李兴球的博客是Python创意编程原创博客

评论已关闭。