We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f454de commit 028d953Copy full SHA for 028d953
2 files changed
manager/manager/launcher/launcher_tools.py
@@ -85,7 +85,7 @@ class LauncherTools(BaseModel):
85
def run(self, consumer):
86
for tool in self.tools:
87
if tool == "simulator":
88
- if self.world_type is None:
+ if self.world_type is None or self.world_type == "physical":
89
continue
90
tool = simulator[self.world_type]["tool"]
91
module = tools[tool]
manager/manager/launcher/launcher_world.py
@@ -41,7 +41,16 @@
41
}
42
],
43
},
44
- "physical": {},
+ "physical": {
45
+ "2": [
46
+ {
47
+ "type": "real",
48
+ "module": "ros2_api",
49
+ "parameters": [],
50
+ "launch_file": [],
51
+ }
52
+ ],
53
+ },
54
55
56
0 commit comments