Ray ray = uiCamera.ScreenPointToRay(uiCamera.WorldToScreenPoint(crossHair.transform.position));
RaycastHit hit;
if(Physics.Raycast(ray.origin,ray.direction,out hit))
{
string name = hit.transform.root.gameObject.name;
Debug.Log("we have hit "+name);
}