2

我想知道如何在屏幕上移动一个点。就像经典游戏中的蠕虫一样。选择的键是 w 向上 s 向下 a 向左和 d 向右。我正在使用 python 2.5.4

ps 我是菜鸟蟒蛇

4

1 回答 1

1

您可以从pygame使用!

是pygame制作的简单蛇游戏!

或使用此代码:

import sys, pygame
pygame.init()
size = width, height = 800, 400
screen = pygame.display.set_mode(size)
position=[20,20]
white=[255,255,255]

while True:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            loop=False
        if event.type==pygame.KEYDOWN:
            if event.key==pygame.D_KEY:
                position[0]+=20


    screen.fill(white)
    pygame.draw.circle(screen,[255,0,0],position,100,3)
    pygame.display.flip()

pygame.quit()
于 2013-05-10T20:06:22.077 回答