Signature
Usage
Config
| Field | Type | Default | Description |
|---|---|---|---|
rate | number | 0.01 | Exponential filter rate (0 = no change, 1 = pure noise) |
std | number | 0.05 | Standard deviation of the Gaussian noise |
enabled | boolean | true | Enable/disable noise injection |
How It Works
Each frame, for each actuator:rate parameter controls the correlation:
- Low rate (0.01): Smooth, slowly-varying noise
- High rate (0.5): Rapidly-changing noise
- Rate = 1.0: Independent samples each frame (white noise)
Notes
- Noise is applied in
useBeforePhysicsStep, composing with other control sources - The noise state is maintained internally — each actuator has its own noise value
- Disable with
enabled: falserather than removing the hook