Search Issue Tracker

Fixed in 5.0.X

Votes

0

Found in

4.5.0f6

Issue ID

610061

Regression

Yes

If you call 'NavMesh.SamplePosition' with float.PositiveInfinity as max distance, it doesn't find NavMesh

AI

-

To reproduce:
1) Create new project
2) Add a plane
3) Bake a NavMesh on it through Navigation panel
4) Attach a script with this in either Start() or Update() to a GameObject (Main Camera works):
//C#
NavMeshHit hit;
NavMesh.SamplePosition(transform.position, out hit, float.PositiveInfinity, 1);
Debug.Log("Hit: " + hit.hit);
Debug.Log("Position: " + hit.position);
Debug.Log("Distance: " + hit.distance);

5) Play the scene, notice that there was no hit.
If you change float.PositiveInfinity to a number, it gets a hit.

Add comment

Log in to post comment

All about bugs

View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.