I use prefeb enemy and starndard asset(FPSController)
When Enemy Chasing me He just get into Player(FPSController) No push No Collision
Does your enemy
- have a collider and is it enabled
- have a rigidbody, and is isKinematic turned OFF (repeat OFF)
- do you move your enemy ONLY by applying force?
If the answers to any of those questions is no → make it so (and don’t call me Jean Luc!)
Then, does your FPS controller
- have a collider and is it enabled?
- a rigidboday and is isKinematic OFF?
Once you can answer yes to all above questions, you should be able to collide with and be pushed around by your enemy.