我对 PyGame 比较陌生。我正在尝试制作一个简单的程序来显示一个表示屏幕上鼠标位置的字符串。
import pygame, sys
from pygame.locals import *
pygame.init()
screen = pygame.display.set_mode((400,400),0,32)
myFont = pygame.font.SysFont('arial', 14)
while True:
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit()
sys.exit()
x,y = pygame.mouse.get_pos()
label = myFont.render('mouse coords: ' + str(x) + ', ' + str(y), 1, (0,128,255))
screen.blit(label, (10,10))
pygame.display.update()
当我移动鼠标时,标签变得模糊,直到文本无法阅读。我确定我正确调用了 screen.blit() 和 pygame.display.update(),但是标签似乎没有更新!任何帮助都会很棒。