From 2c9f6312e2d737be76a0ed14ae87df31a96e73a4 Mon Sep 17 00:00:00 2001 From: Poommetee Ketson Date: Tue, 11 Jul 2017 21:04:41 +0700 Subject: AStar: add bool has_point(id) --- core/math/a_star.h | 1 + 1 file changed, 1 insertion(+) (limited to 'core/math/a_star.h') diff --git a/core/math/a_star.h b/core/math/a_star.h index 34a5358344..ebf1407c17 100644 --- a/core/math/a_star.h +++ b/core/math/a_star.h @@ -104,6 +104,7 @@ public: Vector3 get_point_pos(int p_id) const; real_t get_point_weight_scale(int p_id) const; void remove_point(int p_id); + bool has_point(int p_id) const; void connect_points(int p_id, int p_with_id, bool bidirectional = true); void disconnect_points(int p_id, int p_with_id); -- cgit v1.2.3