twelveth-alien_invasion-alien_invasion.py

步骏
2023-12-01
# -*- coding:utf-8 -*-
#li hongliang 2021年03月26日
import sys
import pygame
from settings import Settings
def run_game():
    # 初始化游戏并创建一个屏幕对象 
    pygame.init() 
    screen = pygame.display.set_mode((1200, 800))
    pygame.display.set_caption("Alien Invasion")
    # 设置背景色
    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()
run_game()

#12.3.2 设置背景色
#12.3.3 创建设置类

 类似资料:

相关阅读

相关文章

相关问答