pygame简单使用

import pygame

# 初始设置
pygame.init()# 初始化pygame
screen = pygame.display.set_mode((800,900))# Pygame窗口
pygame.display.set_caption("pygame绘制图形")# 标题
keep_going = True
RED = (255,0,0)# 红色,使用RGB颜色
radius = 20# 半径

# 游戏循环
while keep_going:
	for event in pygame.event.get():# 遍历事件
		if event.type == pygame.QUIT:# 退出事件
			keep_going = False
	pygame.draw.circle(screen,RED,(200,300),radius)# 在Surface上绘制图片
	pygame.display.update()# 刷新屏幕

# 退出程序
pygame.quit()

 

评论

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注