我怎么知道什么敌人在Pygame中与我相撞?
我正在使用以下内容:
hit = pygame.sprite.spritecollide(player, door_list, False)
是否有任何方法可以使用door_list
中的哪个元素与玩家相撞的元素?
I'm using the following:
hit = pygame.sprite.spritecollide(player, door_list, False)
Is there any way of checking with what element in door_list
the player collided with?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
pygame.sprite.spritecollide
返回一个包含所有 sprites 的列表:与另一个 sprite 相交的列表:pygame.sprite.spritecollide
returns a list containing all Sprites in a _Group: that intersect with another Sprite: