So I’m making a top down shooter game and I’v made it so the enemies move towards the player using moveTowards()
moveTowards(player.x, player.y, 2, “enemy”)
My problem is that the enemies move over each other and eventually overlap (Even though I’v set type “enemy” to the solidType in moveTowards()) I’m new to Flashpunk so it’s probably something really obvious.