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
- Crash on GUIManager::DoGUIEvent when focusing on the Game view window on a specific project
- Asset creation in the Project Browser is not always undone/inconsistent when the undo shortcut is pressed right after creating an asset
- JobTempAlloc memory leak warning is thrown when the Player is shut down
- Graphics State Collection warm-up does not work when using with Addressables Shaders
- "Baked Shadow Radius" field is visible but inactive when when the Shadow Type is set to "Hard Shadows" under the Light Component
Add comment