Search Issue Tracker
Won't Fix
Votes
0
Found in
2018.4
2019.4.3f1
2020.2
Issue ID
1263441
Regression
No
Trajectory of the path is re-calculated incorrectly when using NavMeshSurface
Reproduction steps:
1. Open the attached project ("case_1263441-Pathfinding.zip")
2. Open the repro scene ("Test")
3. Enter Play Mode
4. Press A to start the pathfinding
5. Inspect the agent moving to the destination
Expected result: Agent avoid obstacles and reaches the destination
Actual result: Agent re-calculates the path and goes through the corner of the obstacle
Reproducible with: 2018.4.26f1, 2019.4.9f1, 2020.1.3f1, 2020.2.0a21
Note: The issue does not reproduce when using regular NavMesh instead of NavMeshSurface
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Multiple errors occur when setting the Render Object Event to AfterRenderingPostProcessing while using STP for Upscaling
- UnityYamlMerge.exe doesn't correctly handle merge conflicts in modified properties on a prefab variant
- Inconsistent color scheme in "Details" section of "Select Presets" inspector window
- Crash on __pthread_kill when launching Editor via command-line with "-disableManagedDebugger" argument
- [VFX] Deleting “New Group Node” name doesn’t allow to type or add new name
Resolution Note (2021.1.X):
This issue is a limitation of the current NavMesh algorithm and cannot be solved without fundamental changes in the code. The current code, usually gives the global optimal solution, but it is not guaranteed. There can be some special cases (like this example) for which the code gives a near-optimal, not the global-optimal solution.