I am new to Unity3D and I am pretty sure that something similar was asked before, but apparently I am not googling it right.
I am trying to solve the following problem: I have a car and a road game objects. A player can control the car in a top-down fashion. I want to detect when the car is off the road.
So, I created a mesh collider around the road in order to detect collision in OnCollisionEnter():
Since the RoadBoundry game object does not have a rigid body component, I expect that the car would just pass through it, however it interacts with it in a weird way:
Why the car interacts with mesh that way and how to detect a collision in my case ?


