/* 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 { /// /// Portal Container class storing Portal properties. /// public class PortalObject : MonoBehaviour { /// /// Gizmo color for portal connections. /// public Color color = Color.white; } }