0
我正在使用GVRTeleport脚本来允许使用纸板应用进行传送。我希望用于远距传物的射线能够忽略除一层以外的所有层。通过this页面我相应地修改了脚本(道歉,找不到原始链接到这个代码的所有者),但是现在传送脚本根本看不到任何东西。有任何想法吗?我的底层是第8层,这是我希望这个raycast与之交互的层。Raycast到Unity中的特定图层
using UnityEngine;
public class GVRTeleport : MonoBehaviour {
public float viewHeight = 7f;
Vector3 fwd;
public float maxDistance = 10f;
public LineRenderer line;
public GameObject parent;
public GameObject targetIndicator;
public StraightLineParam genLine;
int layerMask = 1 << 8;
void Start() {
}
void Update() {
RaycastHit hit;
Ray ray;
if (Physics.Raycast (transform.position, Vector3.forward, Mathf.Infinity, layerMask)) {
Debug.Log ("The ray hit the floor");
if (debugWithMouse) {
Vector2 mousePos = new Vector2 (Input.mousePosition.x/Screen.width, Input.mousePosition.y/Screen.height);
ray = Camera.main.ViewportPointToRay (mousePos);
} else {
ray = new Ray (transform.position, transform.forward);
}
if (Physics.Raycast (ray, out hit)) {
Debug.DrawLine (transform.position, hit.point, Color.red);
}
if (Input.GetMouseButton (0)) {
if (Physics.Raycast (ray, out hit)) {
if (useViewHeight) {
targetIndicator.transform.position = new Vector3 (hit.point.x, hit.point.y + viewHeight, hit.point.z);
} else {
targetIndicator.transform.position = new Vector3 (hit.point.x, hit.point.y, hit.point.z);
}
targetIndicator.transform.LookAt (hit.point);
targetIndicator.GetComponent<Light>().intensity = 8;
genLine.genLine (new Vector3 (ray.origin.x + 2, ray.origin.y - .5f, ray.origin.z), hit.point);
line.material.SetTextureOffset ("_MainTex", new Vector2 (Time.timeSinceLevelLoad * -4f, 0f));
line.material.SetTextureScale ("_MainTex", new Vector2 (hit.point.magnitude, 1f));
}
}
if (Input.GetMouseButtonUp (0)) {
if (Physics.Raycast (ray, out hit)) {
if (!debugNoJump) {
if (useViewHeight) { //better way?
parent.transform.position = new Vector3 (hit.point.x, hit.point.y + viewHeight, hit.point.z);
} else {
parent.transform.position = new Vector3 (hit.point.x, hit.point.y, hit.point.z);
}
}
if (!debugLine) {
line.SetVertexCount (0);
}
}
targetIndicator.GetComponent<Light>().intensity = 0;
}
Debug.DrawRay (this.transform.position, ray.direction * 5, Color.blue);// .DrawLine(transform.position, hit.point, Color.red);
}
}
}
工作。我改变了一些其他的一些东西,将它整理并张贴分享。 – P1505C
完美!听起来不错 –