Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions modules/navigation_3d/nav_map_3d.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -500,6 +500,9 @@ void NavMap3D::_update_rvo_obstacles_tree_2d() {
// The following block is modified copy from RVO2D::AddObstacle()
// Obstacles are linked and depend on all other obstacles.
for (NavObstacle3D *obstacle : obstacles) {
if (!obstacle->is_avoidance_enabled()) {
continue;
}
const Vector3 &_obstacle_position = obstacle->get_position();
const Vector<Vector3> &_obstacle_vertices = obstacle->get_vertices();

Expand Down