我对按键事件有问题。由于某些原因,当我按下按钮时,它会导致重复输入。这是我的密码:
import pygame
def main():
pygame.init()
pygame.display.set_caption("minimal program")
screen = pygame.display.set_mode((240,180))
running = True
pygame.key.set_repeat()
while running:
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
running = False
if event.type == pygame.KEYDOWN:
print("pressed")
if __name__=="__main__":
main()
我尝试使用pygame.key.set_repeat()但没有成功。我还打开了一个新文件,以检查当前文件是否有问题,并且没有任何更改。如果有人知道原因,请帮忙。
暂无答案!
目前还没有任何答案,快来回答吧!