如何將變量x,y分配給鼠標指針的x和y位置,當它被按下(單擊)時。Python,Pygame鼠標事件
繼承人什麼我迄今:
from pygame import*
init()
SIZE = (width, height)
screen = display.set_mode(SIZE)
position = 0
Running = True
while Running:
for evnt in event.get():
if evnt.type == QUIT:
Running = False
elif evnt.type == MOUSEBUTTONDOWN:
position = evnt.pos
目前的位置是在形式(x位置,y位置)。 我將如何訪問各個元素?
在此先感謝。
這是不正確的 - get_pressed讓你像一個元組(1,0, 0)表示按鈕一被按下,所以它不會給你座標檢查這裏:http://www.pygame.org/docs/ref/mouse.html – RichNasser