2023-05-07 12:10:20 +03:00
|
|
|
|
using DotRecast.Core;
|
|
|
|
|
|
|
|
|
|
namespace DotRecast.Detour.Crowd
|
|
|
|
|
{
|
2023-06-08 15:38:02 +03:00
|
|
|
|
public class DtObstacleSegment
|
2023-05-07 12:10:20 +03:00
|
|
|
|
{
|
|
|
|
|
/** End points of the obstacle segment */
|
2023-06-03 15:47:26 +03:00
|
|
|
|
public RcVec3f p = new RcVec3f();
|
2023-05-07 12:10:20 +03:00
|
|
|
|
|
|
|
|
|
/** End points of the obstacle segment */
|
2023-06-03 15:47:26 +03:00
|
|
|
|
public RcVec3f q = new RcVec3f();
|
2023-05-07 12:10:20 +03:00
|
|
|
|
|
|
|
|
|
public bool touch;
|
|
|
|
|
}
|
|
|
|
|
}
|