Hello, I'm currently making a top-down shooter with enemies that chase after the player to kill him. I hit a problem when trying to make them chase after the player, the enemies just overlap each other, even if solid or physic behaviors are enabled. However they collide with the player strangely enough.
For making the enemies chase after the player I'm currently using this:
Every tick:
- Set Angle Toward (Player.X, Player.Y)
- Move Forward 1.5 pixels
Note: I used to have the Bullet Behavior instead of this for the enemy's movement but it didn't seem to make a difference. I also tried enabling bounce on collision with other solids in the Bullet Behavior settings but it's just made them bounce really stupidly and spazy off of each other which doesn't look very good.