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
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.
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- The Editor opens when the window is closed right after launch
- Frame Debugger's Hierarchy is not navigable when connecting it to the project built with the Volumetric Fog
- The number of SetPass Calls is increasing when attaching the Frame Debugger to the Player
- Scrollbar briefly appears in the Package Manager during installation process even when the package list is too short to require scrolling
- Script resets to use the previous Skybox color when saving the Scene changes
Add comment