在python的编程世界中做出游戏界面需要使用pygame库,那么如何简单有效的掌握呢?
pygame库使用四步骤:
初始化 pygame.init()
设置屏幕的宽和高 screen=pygame.display.set_mode()
设置标题 pygame.display.set_caption()
刷新屏幕 pygame.display.update() 注意:让画面动起来需要添加screen.fill()
代码示例:
pygame.init()
ball=0
screen=pygame.display.set_mode((700,500))
pygame.display.set_caption("plane")
while True:
screen.fill((0,0,0))#黑色背景
pygame.draw.circle(screen,(100,40,30),(ball,100),30,0)
ball+=1
pygame.time.delay(10)#用延迟来控制速度
pygame.display.update()
即可出现小球界面: