2013-06-04 37 views
0

我的代碼應該檢查我的鼠標位置然後打印它,但它只檢查一次,這是什麼問題?檢查我的鼠標在我的畫布上的位置錯誤(Pygame)

import pygame, sys, time 
from pygame.locals import * 

pygame.init() 
WINDOW_WIDTH = 1000 
WINDOW_HEIGHT = 600 
surface = pygame.display.set_mode ((WINDOW_WIDTH, WINDOW_HEIGHT),0,32) 
pygame.display.set_caption ('get POS') 

while True: 
    amntTuple = pygame.mouse.get_pos() 
    print (amntTuple) 
    time.sleep(0.2) 

回答

2

致電pygame.event.get()從pygame事件隊列中獲取新事件。

while True: 
    for event in pygame.event.get():  
     amntTuple = pygame.mouse.get_pos() 
     print (amntTuple) 
+0

感謝那個我新來的pygame –