Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为图像上的鼠标拖放效果进行编码。同时,我想在每次拖放时记录图像的左上角,有什么办法吗?
如果您从 派生类pygame.sprite.Sprite,则可以通过 获得该位置guy.rect。取决于你想要居中,还是toplef,或者完整的矩形:
pygame.sprite.Sprite
guy.rect
guy.rect.topleft或guy.rect.center或guy.rect
guy.rect.topleft
guy.rect.center
你用什么方法来绘制图像?没有这个就很难回答这个问题。
如果您还没有这样做,您可以使用一个类来保存有关您的图像的数据,例如位置和几何形状。