OnCollisionEnter...

Hi, i have a problem with the event OnCollisionEnter.

I have 2 Object

  1. A EmptyObject with a Sphere Collider
  2. A Sphere with Sphere Collider without RigidDody

And i put in the Sphere a script with this code:

void OnCollisionEnter(Collision collision) {
Debug.Log(“Hit”);
}
Never is called the event.

Note that collision events are only sent if one of the colliders also has a non-kinematic rigidbody attached.