Pygame 是一个流行的用于编写游戏的 Python 包 - 鼓励学生在学习编程的同时创造有趣的东西。 Pygame 在新窗口中显示图形,因此它将
无法在 WSL 的命令行方式下运行。但是,如果你按照本教程中的说明通过 Microsoft Store 安装 Python,它将正常工作。
1.安装 Python 后,请通过键入 python -m pip install -U pygame --user,从命令行(或 VS Code 中的终端)安装 pygame。
2.通过运行示例游戏来测试安装: python -m pygame.examples.aliens
3.如果一切正常,游戏会打开一个窗口。播放完毕后,关闭窗口。
以下是如何开始编写自己的游戏。 (编辑器是vs代码)
1 打开 PowerShell(或 Windows 命令提示符)并创建一个名为“bounce”的空文件夹。导航到此文件夹并创建一个名为“bounce.py”的文件
+文件。 在 VS Code 中打开文件夹:
mkdir bounce
cd bounce
new-item bounce.py
code .
使用 "VS Code",输入以下 Python 代码(或复制并粘贴):
import sys, pygame
pygame.init()
size = width, height = 640, 480
dx = 1
dy = 1
x= 163
y = 120
black = (0,0,0)
white = (255,255,255)
screen = pygame.display.set_mode(size)
while 1:
for event in pygame.event.get():
if event.type == pygame.QUIT: sys.exit()
x += dx
y += dy
if x < 0 or x > width:
dx = -dx
if y < 0 or y > height:
dy = -dy
screen.fill(black)
pygame.draw.circle(screen, white, (x,y), 8)
pygame.display.flip()
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何使用 python 函数读取二进制形式的文件?10/17
- ♥ python如何获取返回值类型09/27
- ♥ python中的冒泡排序是什么?08/27
- ♥ 如何在python交互模式下输出汉字12/01
- ♥ WSGI 在 python 中的工作原理11/26
- ♥ c如何与python交互12/21
内容反馈