1. 程式人生 > >世界座標轉NGUI螢幕座標

世界座標轉NGUI螢幕座標

Vector3 pos = Camera.main.WorldToScreenPoint(worldPos);
	pos.z = 0f;
	Vector3 pos2 = UICamera.currentCamera.ScreenToWorldPoint(pos);
	temp.transform.position = pos2;

注意 z至0

tmp的position 而不是localposition