RandomDevNeedingHelp
New member
C#:
var snapThreshold = Mathf.Min(0.001f, m_ArrivedDistance.Value);
This line makes it so that only distances < 0.001f are taken into account.
The tooltip for ArrivedDistance says "The agent has arrived when the magnitude is less than this value." but then the magnitude is never used for that purpose (only for easing).
EDIT: forgot to say that I'm on v3 now so this is the latest available