Answers for "pygame collision detection rect"

7

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
Posted by: Guest on January-25-2021

Python Answers by Framework

Browse Popular Code Answers by Language