码迷,mamicode.com
首页 > 编程语言 > 详细

python3.7-初学篇-17

时间:2018-12-12 00:15:16      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:splay   loop   quit   exit   item   screen   sys   event   use   

import sys
import pygame
def run_game():
  #initialize game and create a dispaly object
  pygame.init()
  screen = pygame.display.set_mode((1200,800))
  pygame.display.set_caption("Alien Invasion")
  # set backgroud color
  bg_color = (230,230,230)

  # game loop
  while True:
    # supervise keyboard and mouse item
    for event in pygame.event.get():
      if event.type == pygame.QUIT:
        sys.exit()
    # fill color
    screen.fill(bg_color)
    # visualiaze the window
    pygame.display.flip()
run_game( )

python3.7-初学篇-17

标签:splay   loop   quit   exit   item   screen   sys   event   use   

原文地址:https://www.cnblogs.com/liangbannerhulk/p/10105420.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!