我collidepoint
通过另一个类使用 Pygame 的方法时遇到了一些问题:
if(mouseclick[0]):
for tile in self.engine.level.levellist:
if tile.collidepoint(mousepos):
这个小而简单的代码给了我一个错误:
if tile.collidepoint(mousepos):
AttributeError: TileClass instance has no attribute 'collidepoint'
有人知道我在做什么错吗?自从我使用 python 以来已经有一段时间了,我可能只是错过了一些容易修复的东西。