IsaacSim-1

2025-10-17

具身

Simulator Launcher

1
2
3
4
5
6
7
8
9
10
11
12
13
import argparse

from isaaclab.app import AppLauncher

# create argparser
parser = argparse.ArgumentParser(description="Tutorial on creating an empty stage.")
# append AppLauncher cli args
AppLauncher.add_app_launcher_args(parser)
# parse the arguments
args_cli = parser.parse_args()
# launch omniverse app
app_launcher = AppLauncher(args_cli)
simulation_app = app_launcher.app

总之就是一个很简单的,把 argument parse 了之后去设置一个 launch app.

然后 main 也差不多就是一个

1
2
3
4
while simulation_app.is_running():
step
---
simulation_app.close()

Interactive Scene