基础DAY14-飞机大战-创建游戏主窗口
Posted joycezhou
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基础DAY14-飞机大战-创建游戏主窗口相关的知识,希望对你有一定的参考价值。
python -m pygame.examples.aliens
import pygame pygame.init() # 编写邮箱代码 print("游戏代码") pygame.quit()
import pygame # 定义hero_rect矩形描述英雄的位置和大小 hero_rect = pygame.Rect(100, 500, 120, 125) # 输出英雄的坐标原点(x 和 y) print("英雄的原点%d %d" % (hero_rect.x, hero_rect.y)) # 输出英雄的尺寸(宽度和高度) print(hero_rect.size) print("英雄的尺寸%d %d" % hero_rect.size) print("英雄的尺寸%d %d" % (hero_rect.width, hero_rect.height))
import pygame pygame.init() # 创建游戏窗口 screen = pygame.display.set_mode((480, 700)) pygame.display.update() while True: pass pygame.quit()
以上是关于基础DAY14-飞机大战-创建游戏主窗口的主要内容,如果未能解决你的问题,请参考以下文章