马上注册,加入CGJOY,让你轻松玩转CGJOY。
您需要 登录 才可以下载或查看,没有帐号?立即注册
×
使用函数:Camera.WorldToScreenPoint
原型:function WorldToScreenPoint (position : Vector3) : Vector3
返回值:Vector3 中 x,y是屏幕中的位置,z是坐标到摄像机的距离 屏幕左下方是(0,0);右上方是(pixelWidth,pixelHeight)
例程:
[java] view plaincopyprint?
01.var target : Transform;
02.function Update ()
03.{
04.var screenPos = camera.WorldToScreenPoint (target.position);
05.print ("target is " + screenPos.x + " pixels from the left");
06.}
|