mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
18 lines
304 B
C#
18 lines
304 B
C#
namespace AssetRipper.Core.Classes.NavMeshObstacle
|
|
{
|
|
/// <summary>
|
|
/// Shape of the obstacle.
|
|
/// </summary>
|
|
public enum NavMeshObstacleShape
|
|
{
|
|
/// <summary>
|
|
/// Capsule shaped obstacle.
|
|
/// </summary>
|
|
Capsule = 0,
|
|
/// <summary>
|
|
/// Box shaped obstacle.
|
|
/// </summary>
|
|
Box = 1,
|
|
}
|
|
}
|