Raycast de l'appareil photo à l'unité de la souris

Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
if (Physics.Raycast(ray, out RaycastHit hit, 100)) {
	Debug.Log(hit.transform.name);
	Debug.Log("hit");
}
Ugliest Unicorn