Screentoworldpoint da unidade
public Camera yourCamera;
public Vector3 yourPosition;
yourCamera.ScreenToWorldPoint(yourPosition);
//For example to get positions of the mouse
Camera.main.ScreenToWorldPoint(Input.MousePosition);
Tartaud