Skip to content

Commit

Permalink
Fix a bug blocking rendering of ScanNet meshes with habitat-sim
Browse files Browse the repository at this point in the history
  • Loading branch information
ShenhanQian committed Nov 4, 2024
1 parent b02452a commit b6fd764
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def _lazy_initialization(self):
# Try to compute a navmesh
navmesh_settings = habitat_sim.NavMeshSettings()
navmesh_settings.set_defaults()
self.sim.recompute_navmesh(self.sim.pathfinder, navmesh_settings, True)
self.sim.recompute_navmesh(self.sim.pathfinder, navmesh_settings)

# Check that the navmesh is not empty
if not self.sim.pathfinder.is_loaded:
Expand Down

0 comments on commit b6fd764

Please sign in to comment.