onTriggerEnter2d
void OnTriggerEnter2D (Collider2D other) //Make sure to put this out of Voids
{
if (other.gameObject.tag == "Object")
{
Debug.Log ("Collided");
}
Am coder