unity check if objects is colliding with another code example
Example: unity check if other object is colliding
public void OnCollisionEnter(Collision collision)
{
// Do your stuff here
}
//if your collider is a trigger
public void OnTriggerEnter(Collider other)
{
// Do your stuff here
}