本文介绍了在 Pygame 中检测鼠标悬停在图像上的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一张图片:

newGameButton = pygame.image.load("images/newGameButton.png").convert_alpha()

然后我将它显示在屏幕上:

I then display it on the screen:

screen.blit(newGameButton, (0,0))

如何检测鼠标是否正在触摸图像?

How do I detect if the mouse is touching the image?

推荐答案

使用 Surface.get_rect 获取Rect 描述你的 Surface,然后使用 .collidepoint()检查鼠标光标是否在这个Rect.

示例:

if newGameButton.get_rect().collidepoint(pygame.mouse.get_pos()):
    print "mouse is over 'newGameButton'"

这篇关于在 Pygame 中检测鼠标悬停在图像上的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-31 21:00