Skip to content

Commit c431898

Browse files
committed
default realtime_sync
1 parent 7df8931 commit c431898

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

docs/installation_and_configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Physics engine configuration with core simulation parameters.
6868

6969
**Key Parameters:**
7070
- `headless`: Run without GUI (default: False)
71-
- `realtime_sync`: Synchronize with real time (default: False)
71+
- `realtime_sync`: Synchronize with real time (default: True)
7272
- `timestep`: Physics simulation timestep in seconds (default: 0.002)
7373
- `gravity`: Gravitational acceleration vector (default: "0 0 -9.81")
7474
- `integrator`: Numerical integration method ("implicitfast", "implicit", "explicit")

src/synthnova_config/src/synthnova_config/sim/mujoco.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ class MujocoConfig(BaseModel):
184184
headless (bool): Run the simulator in headless mode (no graphical output).
185185
Defaults to False.
186186
realtime_sync (bool): Run the simulator in realtime mode (sync with real time).
187-
Defaults to False.
187+
Defaults to True.
188188
realtime_factor (float): Real-time factor for the simulator.
189189
Must be positive. Defaults to 1.0.
190190
@@ -283,7 +283,7 @@ class MujocoConfig(BaseModel):
283283
)
284284

285285
realtime_sync: bool = Field(
286-
default=False,
286+
default=True,
287287
description="Run the simulator in realtime mode (sync with real time)",
288288
json_schema_extra={"examples": [True, False]},
289289
)

0 commit comments

Comments
 (0)