/* This file is part of the "NavMesh Extension" project by Rebound Games. * You are only allowed to use these resources if you've bought them directly or indirectly * from Rebound Games. You shall not license, sublicense, sell, resell, transfer, assign, * distribute or otherwise make available to any third party the Service or the Content. */ using UnityEngine; using System.Collections; namespace NavMeshExtension { /// /// NavMesh Manager class storing NavMesh properties. /// public class NavMeshManager : MonoBehaviour { /// /// Material for newly created meshes. /// public Material meshMaterial; /// /// Boolean used when toggling mesh renderers. /// [HideInInspector] public bool rendererToggle = true; } }