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
- Missing Info Icon in Development Build Info Box for Web, Android, Meta, and XR Platforms
- [Usability] Warning message in an Adaptive Probe Volume Component is not informative enough when Realtime Global Illumination is enabled
- Inspector for Adaptive Probe Volumes is not repainted when toggling Realtime Global Illumination setting in the Lighting Window
- Surface Inputs are not rendering when using the custom BaseShaderGUI
- Reflection Problem custom Cubemap loses its reference when HDR is enabled and the platform is switched
Add comment