Skip to content

Commit 392e9bb

Browse files
committed
Update vnc
1 parent 1f57e91 commit 392e9bb

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

manager/manager/launcher/launcher_o3de.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,15 @@
1414
from manager.ram_logging.log_manager import LogManager
1515

1616
class LauncherO3de(ILauncher):
17-
display: str
18-
internal_port: int
19-
external_port: int
20-
height: int
21-
width: int
2217
running: bool = False
2318
threads: List[Any] = []
2419
acceptsMsgs: bool = False
2520
gz_vnc: Any = Vnc_server()
2621

2722
def run(self, config_file, callback):
2823

29-
process_name = "gz sim"
30-
wait_for_process_to_start(process_name, timeout=60)
24+
# process_name = "gz sim"
25+
# wait_for_process_to_start(process_name, timeout=60)
3126

3227
self.running = True
3328

manager/manager/launcher/launcher_o3de_api.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@
1717

1818

1919
class LauncherO3deApi(ILauncher):
20+
display: str
21+
internal_port: int
22+
external_port: int
23+
height: int
24+
width: int
2025
type: str
2126
module: str
2227
launch_file: str

manager/manager/launcher/launcher_tools.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,7 @@
3434
},
3535
"o3de": {
3636
"type": "module",
37-
"width": 1024,
38-
"height": 768,
3937
"module": "o3de",
40-
"display": ":2",
41-
"external_port": 6080,
42-
"internal_port": 5900,
4338
},
4439
"rviz": {
4540
"module": "rviz",

manager/manager/launcher/launcher_world.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@
2929
"o3de": {
3030
"2": [
3131
{
32+
"width": 1024,
33+
"height": 768,
34+
"display": ":2",
35+
"external_port": 6080,
36+
"internal_port": 5900,
3237
"type": "o3de",
3338
"module": "o3de_api",
3439
"parameters": [],

0 commit comments

Comments
 (0)