UnityのGameObjectのPositionをPixelで取得する。
Camera toCamera = CameraGUI.Instance.Camera;
Vector3 screenPos = toCamera.WorldToScreenPoint(gameObject.transform.position);
Debug.Log("x is " + screenPos.x);
Debug.Log("y is " + screenPos.y);
Debug.Log("z is " + screenPos.z);