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