美文网首页
python自学之--跟着百度写游戏(未写完)

python自学之--跟着百度写游戏(未写完)

作者: Moine0828 | 来源:发表于2019-04-27 22:01 被阅读0次

    1、安装pygame
    pygame是python的一个游戏库,作用强大。我用命令行安装了pygame,但是在PyCharm里import无效,只能在IDE里重新导入一次,选择file -- settings -- Project Interpreter,点击右上角的加号,搜索pygame,点击install就行了

    2、初始化一个窗口
    代码是网上拷贝的

    import pygame
    import sys
    def initGame():
        pygame.init()
        screen = pygame.display.set_mode((1200,1800))
        pygame.display.set_caption("game screen 111")
        bg_color=(230,230,230)
    
        while True:
            for event in pygame.event.get():
                if event.type == pygame.QUIT:
                    sys.exit()
            screen.fill(bg_color)
            pygame.display.flip()
    
    
    initGame();
    
    

    相关文章

      网友评论

          本文标题:python自学之--跟着百度写游戏(未写完)

          本文链接:https://www.haomeiwen.com/subject/xsmlnqtx.html