foo
This commit is contained in:
parent
fd0728123a
commit
41177d737e
3 changed files with 2 additions and 4 deletions
|
@ -1 +1 @@
|
|||
Subproject commit a62f633cebee4b36356dc903d00670733cd28fb1
|
||||
Subproject commit 21d526e5e5b1e5d8b6be4db05a704c2c2e7837a9
|
|
@ -194,5 +194,3 @@ bool godot::RecastNavMesh::build() {
|
|||
m_heightfield = NULL;
|
||||
}
|
||||
|
||||
void godot::RecastNavMesh::clear_vertices() {
|
||||
}
|
||||
|
|
|
@ -29,6 +29,7 @@ private:
|
|||
rcPolyMesh* m_poly_mesh = NULL;
|
||||
rcPolyMeshDetail* m_poly_mesh_detail = NULL;
|
||||
rcContourSet* m_contour_set = NULL;
|
||||
rcNavMesh* m_nav_mesh = NULL;
|
||||
protected:
|
||||
static void _bind_methods();
|
||||
void doLog(const rcLogCategory category, const char* msg, const int len) override {
|
||||
|
@ -148,7 +149,6 @@ public:
|
|||
}
|
||||
public:
|
||||
void cleanup();
|
||||
void clear_vertices();
|
||||
|
||||
bool init();
|
||||
// returns which triangles are walkable, you can replace every not 0 value with an area id of your choice
|
||||
|
|
Loading…
Reference in a new issue