mirror of
https://github.com/godotengine/godot.git
synced 2024-11-11 14:43:44 +00:00
Print NavMap error only once for invalid NavMesh.
This commit is contained in:
parent
1ad6fade00
commit
67052af918
@ -573,7 +573,7 @@ void NavMap::sync() {
|
||||
connections[ek].push_back(new_connection);
|
||||
} else {
|
||||
// The edge is already connected with another edge, skip.
|
||||
ERR_PRINT("Attempted to merge a navigation mesh triangle edge with another already-merged edge. This happens when the current `cell_size` is different from the one used to generate the navigation mesh. This will cause navigation problem.");
|
||||
ERR_PRINT_ONCE("Attempted to merge a navigation mesh triangle edge with another already-merged edge. This happens when the current `cell_size` is different from the one used to generate the navigation mesh. This will cause navigation problems.");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user