event.py 文件源码

python
阅读 36 收藏 0 点赞 0 评论 0

项目:pool 作者: max-kov 项目源码 文件源码
def events():
    closed = False
    quit = False

    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            closed = True
        if event.type == pygame.KEYDOWN:
            if event.key == pygame.K_ESCAPE:
                quit = True

    return {"quit_to_main_menu": quit,
            "closed": closed,
            "clicked": pygame.mouse.get_pressed()[0],
            "mouse_pos": np.array(pygame.mouse.get_pos())}
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号