Hi, i have a problem with the event OnCollisionEnter.
I have 2 Object
- A EmptyObject with a Sphere Collider
- 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.