My Character Controller object does not work with OnCollisionEnter. Why is this?
I have a sphere that rolls down with a rigidbody then hits the character controller.
The Character Controller should of detected a collision correct?
C#
void OnCollisionEnter(Collision Hit)
{
Debug.Log("TEST");
}