diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-06-08 15:56:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-08 15:56:22 +0200 |
commit | 07029e94f4c641df9bb33bffecb8657746f6f8ef (patch) | |
tree | 2bbc9a9786483bf8e560b98d8838b5101166a189 /modules | |
parent | 7e6f26c582bd29aa3d2197d7e7ee4dc3df530644 (diff) | |
parent | 3066091780150847d117acc5210c937af5e015ab (diff) |
Merge pull request #61662 from smix8/navigation_map_cell_defaults_4.x
Diffstat (limited to 'modules')
-rw-r--r-- | modules/navigation/nav_map.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/navigation/nav_map.h b/modules/navigation/nav_map.h index f58a78d4ca..20115dd1b4 100644 --- a/modules/navigation/nav_map.h +++ b/modules/navigation/nav_map.h @@ -50,10 +50,10 @@ class NavMap : public NavRid { /// To find the polygons edges the vertices are displaced in a grid where /// each cell has the following cell_size. - real_t cell_size = 0.3; + real_t cell_size = 0.25; /// This value is used to detect the near edges to connect. - real_t edge_connection_margin = 5.0; + real_t edge_connection_margin = 0.25; bool regenerate_polygons = true; bool regenerate_links = true; |