1
0
mirror of synced 2024-12-05 02:57:57 +01:00
WACVR/Assets/Script/Controller/RayManager.cs
2022-10-03 02:04:54 +02:00

37 lines
980 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.XR.Interaction.Toolkit;
public class RayManager : MonoBehaviour
{
public bool RaySwitch = true;
public float Distance = -0.45f;
XRRayInteractor interactor;
XRInteractorLineVisual lineVisual;
LineRenderer lineRenderer;
void Start()
{
interactor = GetComponent<XRRayInteractor>();
lineVisual = GetComponent<XRInteractorLineVisual>();
lineRenderer = lineVisual.GetComponent<LineRenderer>();
}
// Update is called once per frame
void Update()
{
if (gameObject.transform.position.z > Distance || !RaySwitch)
{
interactor.enabled = false;
lineRenderer.enabled = false;
lineVisual.enabled = false;
}
else
{
interactor.enabled = true;
lineRenderer.enabled = true;
lineVisual.enabled = true;
}
}
}