Pygame - 用鼠标移动


根据鼠标指针的移动来移动对象很容易。pygame.mouse 模块定义 get_pos() 方法。它返回与鼠标当前位置的 x 和 y 坐标相对应的两项元组。

(mx,my) = pygame.mouse.get_pos()

捕获 mx 和我的位置后,在这些坐标处的 Surface 对象上的 bilt() 函数的帮助下渲染图像。

例子

以下程序在移动鼠标光标位置连续渲染给定图像。

filename = 'pygame.png'
import pygame
from pygame.locals import *
from sys import exit
pygame.init()
screen = pygame.display.set_mode((400,300))
pygame.display.set_caption("Moving with mouse")
img = pygame.image.load(filename)
x = 0
y= 150
while True:
   mx,my=pygame.mouse.get_pos()
   screen.fill((255,255,255))
   screen.blit(img, (mx, my))
   for event in pygame.event.get():
      if event.type == QUIT:
         exit()
pygame.display.update()