diff options
Diffstat (limited to 'servers/navigation_server_3d.cpp')
-rw-r--r-- | servers/navigation_server_3d.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/servers/navigation_server_3d.cpp b/servers/navigation_server_3d.cpp index e5cc426708..210dcf754e 100644 --- a/servers/navigation_server_3d.cpp +++ b/servers/navigation_server_3d.cpp @@ -456,14 +456,14 @@ Color NavigationServer3D::get_debug_navigation_link_connection_disabled_color() return debug_navigation_link_connection_disabled_color; } -void NavigationServer3D::set_debug_navigation_agent_path_point_size(float p_point_size) { +void NavigationServer3D::set_debug_navigation_agent_path_point_size(real_t p_point_size) { debug_navigation_agent_path_point_size = MAX(0.1, p_point_size); if (debug_navigation_agent_path_point_material.is_valid()) { debug_navigation_agent_path_point_material->set_point_size(debug_navigation_agent_path_point_size); } } -float NavigationServer3D::get_debug_navigation_agent_path_point_size() const { +real_t NavigationServer3D::get_debug_navigation_agent_path_point_size() const { return debug_navigation_agent_path_point_size; } |