1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Renamed navmesh/poly_create to navmesh/poly_add since no navmesh is created.

This commit is contained in:
Nathan Warden
2017-12-15 15:09:06 -05:00
parent b872439eef
commit 38caa4126f
10 changed files with 17 additions and 17 deletions

View File

@@ -469,7 +469,7 @@ bool GridMap::_octant_update(const OctantKey &p_key) {
nm.xform = xform;
if (navigation) {
nm.id = navigation->navmesh_create(navmesh, xform, this);
nm.id = navigation->navmesh_add(navmesh, xform, this);
} else {
nm.id = -1;
}
@@ -556,7 +556,7 @@ void GridMap::_octant_enter_world(const OctantKey &p_key) {
if (cell_map.has(F->key()) && F->get().id < 0) {
Ref<NavigationMesh> nm = theme->get_item_navmesh(cell_map[F->key()].item);
if (nm.is_valid()) {
F->get().id = navigation->navmesh_create(nm, F->get().xform, this);
F->get().id = navigation->navmesh_add(nm, F->get().xform, this);
}
}
}