pygame – how can i remove the enemies when they touch the player?
like the title said i cant figure out how to remove an enemy when the enemy touches the player. all i could get to happen is remove all the enemies when the enemies touch the player. Here is my Code: import pygame, math pygame.init() SCREEN_WIDTH = 750 SCREEN_HEIGHT = 500 SCREEN_COLOR = (160, 160, 160) … Read more