-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlaunch.json
37 lines (37 loc) · 1.17 KB
/
launch.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"env": {
"ISAAC_PATH": "${config:ISAAC_SIM_PATH}",
"CARB_APP_PATH": "${config:ISAAC_SIM_PATH}/kit",
"EXP_PATH": "${config:ISAAC_SIM_PATH}/apps",
"RESOURCE_NAME": "IsaacSim"
},
"python": "${config:ISAAC_SIM_PATH}/kit/python/python.exe",
"envFile": "${workspaceFolder}/.vscode/setup_python.env",
"preLaunchTask": "setup_python_env",
"args": [
"--/persistent/isaac/asset_root/default=\"omniverse://my_server\""
],
},
{
"name": "Python: Attach (local)",
"type": "python",
"request": "attach",
"port": 3000,
"host": "127.0.0.1"
},
{
"name": "Python: Attach (cloud)",
"type": "python",
"request": "attach",
"port": 3000,
"host": "{config:CLOUD_IP}"
},
]
}