using UnityEngine;
public class CollisionDetector : MonoBehaviour
{
private void OnCollisionEnter(Collision collision)
{
Debug.Log("Collision detected between " + gameObject.name + " and " +
collision.gameObject.name);
}
}

Analyst studies emerging trends in the information technology.