Skip to content
Open
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
4 changes: 3 additions & 1 deletion lw_benchhub/utils/envhub_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ def _parse_config(config_path: str):
"object_projects": None,
"execute_mode": "eval",
"replay_cfgs": {"add_camera_to_observation": True},
"headless": True,
"enable_cameras": False,
}
for key, value in defaults.items():
if key not in config:
Expand Down Expand Up @@ -118,7 +120,7 @@ def export_env_for_envhub(config_path: str):
cfg = _parse_config(config_path)

from isaaclab.app import AppLauncher
app_launcher = AppLauncher(enable_cameras=cfg.enable_cameras)
app_launcher = AppLauncher(headless=cfg.headless, enable_cameras=cfg.enable_cameras)

environment = f"{cfg.task}-{cfg.robot}"
task = cfg.task
Expand Down