diff options
author | smix8 <52464204+smix8@users.noreply.github.com> | 2024-06-23 04:00:34 +0200 |
---|---|---|
committer | smix8 <52464204+smix8@users.noreply.github.com> | 2024-06-23 14:49:35 +0200 |
commit | 83bd8fa396e5367e0f1c084ea8e3041cb7adbf26 (patch) | |
tree | 132db52aa885d3580326ff66781f680405e3889d /modules/navigation/nav_region.h | |
parent | 04bf7d4cade645a5923cc80d87ac1c6109e2cdfe (diff) | |
download | redot-engine-83bd8fa396e5367e0f1c084ea8e3041cb7adbf26.tar.gz |
Move NavRegion connections to NavMap
Moves bookkeeping for connections from region to map where connections are actually made.
Diffstat (limited to 'modules/navigation/nav_region.h')
-rw-r--r-- | modules/navigation/nav_region.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/modules/navigation/nav_region.h b/modules/navigation/nav_region.h index ebc082bd2f..662a32c47a 100644 --- a/modules/navigation/nav_region.h +++ b/modules/navigation/nav_region.h @@ -40,7 +40,6 @@ class NavRegion : public NavBase { NavMap *map = nullptr; Transform3D transform; - Vector<gd::Edge::Connection> connections; bool enabled = true; bool use_edge_connections = true; @@ -85,13 +84,6 @@ public: void set_navigation_mesh(Ref<NavigationMesh> p_navigation_mesh); - Vector<gd::Edge::Connection> &get_connections() { - return connections; - } - int get_connections_count() const; - Vector3 get_connection_pathway_start(int p_connection_id) const; - Vector3 get_connection_pathway_end(int p_connection_id) const; - LocalVector<gd::Polygon> const &get_polygons() const { return polygons; } |