世界坐标转屏幕坐标:

Vector3 screenPos = Camera.main.WorldToScreenPoint(pos); 

屏幕坐标转世界坐标:

Vector3 worldPos = Camera.main.ScreenToWorldPoint(pos);