collision detection in pygame code example
Example 1: how to do collision detection in pygame
#making stuff to collide
player=pygame.Rect(whatever you want)
villian=pygame.Rect(whatever you want)
#making the detection
if villian.colliderect(player):
print ("villian got you oh no!")#this can be something different
Example 2: pygame check collision
def is_collided_with(self, sprite):
return self.rect.colliderect(sprite.rect)