GodotComponentTest/Globals.cs

5 lines
134 B
C#
Raw Normal View History

public static class Globals
{
public const float EpsPosition = 0.01f;
public const float EpsPositionSquared = 0.01f * 0.01f;
}