Allow compiling out the navigation module

This commit is contained in:
Josh Jones
2022-11-20 23:35:20 -08:00
parent 929ee61170
commit f978d74fd0
6 changed files with 153 additions and 19 deletions

View File

@ -69,10 +69,10 @@ struct PathQueryParameters {
};
struct PathQueryResult {
Vector<Vector3> path;
Vector<int32_t> path_types;
PackedVector3Array path;
PackedInt32Array path_types;
TypedArray<RID> path_rids;
Vector<int64_t> path_owner_ids;
PackedInt64Array path_owner_ids;
};
} //namespace NavigationUtilities