Files
OldThink/Content.Shared/NPC/SharedNPCSteeringSystem.cs

17 lines
476 B
C#
Raw Permalink Normal View History

2022-12-12 14:33:43 +11:00
namespace Content.Shared.NPC;
public abstract class SharedNPCSteeringSystem : EntitySystem
{
public const byte InterestDirections = 12;
/// <summary>
/// How many radians between each interest direction.
/// </summary>
public const float InterestRadians = MathF.Tau / InterestDirections;
/// <summary>
/// How many degrees between each interest direction.
/// </summary>
public const float InterestDegrees = 360f / InterestDirections;
}