Assignment for RMIT Mixed Reality in 2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 lines
605 B

// Nav Mesh Data|Utilities|90090
namespace VRTK
{
using UnityEngine;
/// <summary>
/// The Nav Mesh Data script allows custom nav mesh information to be provided to the teleporter script.
/// </summary>
[AddComponentMenu("VRTK/Scripts/Utilities/VRTK_NavMeshData")]
public class VRTK_NavMeshData : MonoBehaviour
{
[Tooltip("The max distance given point can be outside the nav mesh to be considered valid.")]
public float distanceLimit = 0.1f;
[Tooltip("The parts of the navmesh that are considered valid")]
public int validAreas = -1;
}
}