summaryrefslogtreecommitdiffstats
path: root/servers/navigation/navigation_path_query_result_3d.h
diff options
context:
space:
mode:
authorJosh Jones <kilauea.jones@gmail.com>2022-10-05 17:24:45 -0600
committerJosh Jones <kilauea.jones@gmail.com>2022-12-17 16:33:41 -0800
commit5d8ba2b2d11fc6c4debdf21fa91bddefaa6f3d6d (patch)
tree4b71044253a7818e2782b0b513159143c40a47d6 /servers/navigation/navigation_path_query_result_3d.h
parent0bb94df247a0a0c22333e2e99744fc3fd184601a (diff)
downloadredot-engine-5d8ba2b2d11fc6c4debdf21fa91bddefaa6f3d6d.tar.gz
Add support for emitting a signal when entering a NavLink
Diffstat (limited to 'servers/navigation/navigation_path_query_result_3d.h')
-rw-r--r--servers/navigation/navigation_path_query_result_3d.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/servers/navigation/navigation_path_query_result_3d.h b/servers/navigation/navigation_path_query_result_3d.h
index fc143ac389..ce34e18dc1 100644
--- a/servers/navigation/navigation_path_query_result_3d.h
+++ b/servers/navigation/navigation_path_query_result_3d.h
@@ -32,21 +32,41 @@
#define NAVIGATION_PATH_QUERY_RESULT_3D_H
#include "core/object/ref_counted.h"
+#include "core/variant/typed_array.h"
#include "servers/navigation/navigation_utilities.h"
class NavigationPathQueryResult3D : public RefCounted {
GDCLASS(NavigationPathQueryResult3D, RefCounted);
Vector<Vector3> path;
+ Vector<int32_t> path_types;
+ TypedArray<RID> path_rids;
+ Vector<int64_t> path_owner_ids;
protected:
static void _bind_methods();
public:
+ enum PathSegmentType {
+ PATH_SEGMENT_TYPE_REGION = 0,
+ PATH_SEGMENT_TYPE_LINK = 1,
+ };
+
void set_path(const Vector<Vector3> &p_path);
const Vector<Vector3> &get_path() const;
+ void set_path_types(const Vector<int32_t> &p_path_types);
+ const Vector<int32_t> &get_path_types() const;
+
+ void set_path_rids(const TypedArray<RID> &p_path_rids);
+ TypedArray<RID> get_path_rids() const;
+
+ void set_path_owner_ids(const Vector<int64_t> &p_path_owner_ids);
+ const Vector<int64_t> &get_path_owner_ids() const;
+
void reset();
};
+VARIANT_ENUM_CAST(NavigationPathQueryResult3D::PathSegmentType);
+
#endif // NAVIGATION_PATH_QUERY_RESULT_3D_H