diff options
author | Andrea Catania <info@andreacatania.com> | 2020-02-18 17:08:34 +0100 |
---|---|---|
committer | Andrea Catania <info@andreacatania.com> | 2020-02-18 17:12:45 +0100 |
commit | 79fc7d7d6a662efc2a13d829f9bb5d00d31c8c2a (patch) | |
tree | c8bb02beafc149ad9bf1e031461263de94c82fb8 /modules/gdnavigation/nav_map.h | |
parent | 6e6403669377160885cac45db7b8115325c3932f (diff) | |
download | redot-engine-79fc7d7d6a662efc2a13d829f9bb5d00d31c8c2a.tar.gz |
Added utility functions to the new NavigationServer:
- Vector3 get_closest_point_to_segment(const Vector3 &p_from, const Vector3 &p_to, const bool &p_use_collision = false);
- Vector3 get_closest_point(const Vector3 &p_point);
- Vector3 get_closest_point_normal(const Vector3 &p_point);
- Object *get_closest_point_owner(const Vector3 &p_point);
Diffstat (limited to 'modules/gdnavigation/nav_map.h')
-rw-r--r-- | modules/gdnavigation/nav_map.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/gdnavigation/nav_map.h b/modules/gdnavigation/nav_map.h index 128a82580c..4543f00926 100644 --- a/modules/gdnavigation/nav_map.h +++ b/modules/gdnavigation/nav_map.h @@ -104,6 +104,10 @@ public: gd::PointKey get_point_key(const Vector3 &p_pos) const; Vector<Vector3> get_path(Vector3 p_origin, Vector3 p_destination, bool p_optimize) const; + Vector3 get_closest_point_to_segment(const Vector3 &p_from, const Vector3 &p_to, const bool p_use_collision) const; + Vector3 get_closest_point(const Vector3 &p_point) const; + Vector3 get_closest_point_normal(const Vector3 &p_point) const; + RID get_closest_point_owner(const Vector3 &p_point) const; void add_region(NavRegion *p_region); void remove_region(NavRegion *p_region); |