diff options
author | Pawel Lampe <pawel.lampe@gmail.com> | 2024-04-20 15:23:39 +0200 |
---|---|---|
committer | Pawel Lampe <pawel.lampe@gmail.com> | 2024-08-27 20:12:10 +0200 |
commit | c3f1bfd5cb0c47529eab6070274fbcf879b8194d (patch) | |
tree | 3fe4e0e515a9a10e241bc681a8c8a585bf43256c /modules/navigation | |
parent | e3550cb20f5d6a61befaafb7d9cbdb57b24870e4 (diff) | |
download | redot-engine-c3f1bfd5cb0c47529eab6070274fbcf879b8194d.tar.gz |
Extract navigation-related defaults to separate header
Diffstat (limited to 'modules/navigation')
-rw-r--r-- | modules/navigation/nav_map.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/modules/navigation/nav_map.h b/modules/navigation/nav_map.h index 82e8854b7a..c18ee7155b 100644 --- a/modules/navigation/nav_map.h +++ b/modules/navigation/nav_map.h @@ -36,6 +36,7 @@ #include "core/math/math_defs.h" #include "core/object/worker_thread_pool.h" +#include "servers/navigation/navigation_globals.h" #include <KdTree2d.h> #include <KdTree3d.h> @@ -55,21 +56,21 @@ class NavMap : public NavRid { /// To find the polygons edges the vertices are displaced in a grid where /// each cell has the following cell_size and cell_height. - real_t cell_size = 0.25; // Must match ProjectSettings default 3D cell_size and NavigationMesh cell_size. - real_t cell_height = 0.25; // Must match ProjectSettings default 3D cell_height and NavigationMesh cell_height. + real_t cell_size = NavigationDefaults3D::navmesh_cell_size; + real_t cell_height = NavigationDefaults3D::navmesh_cell_height; // For the inter-region merging to work, internal rasterization is performed. - float merge_rasterizer_cell_size = 0.25; - float merge_rasterizer_cell_height = 0.25; + float merge_rasterizer_cell_size = NavigationDefaults3D::navmesh_cell_size; + float merge_rasterizer_cell_height = NavigationDefaults3D::navmesh_cell_height; // This value is used to control sensitivity of internal rasterizer. float merge_rasterizer_cell_scale = 1.0; bool use_edge_connections = true; /// This value is used to detect the near edges to connect. - real_t edge_connection_margin = 0.25; + real_t edge_connection_margin = NavigationDefaults3D::edge_connection_margin; /// This value is used to limit how far links search to find polygons to connect to. - real_t link_connection_radius = 1.0; + real_t link_connection_radius = NavigationDefaults3D::link_connection_radius; bool regenerate_polygons = true; bool regenerate_links = true; |