Merge pull request #59893 from Scony/fix-debug-navmesh-errors

This commit is contained in:
Rémi Verschelde 2022-04-04 23:55:42 +02:00 committed by GitHub
commit a28314b036
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -388,6 +388,10 @@ Ref<Mesh> NavigationMesh::get_debug_mesh() {
debug_mesh = Ref<ArrayMesh>(memnew(ArrayMesh));
if (!lines.size()) {
return debug_mesh;
}
Array arr;
arr.resize(Mesh::ARRAY_MAX);
arr[Mesh::ARRAY_VERTEX] = varr;