Reset
The Reset method restores Unreal to a clean state, removing all layers and markers. This is useful when switching scenarios or reloading content.
Reset is performed using ResetRequest, and Unreal replies with ResetResponse once the operation is complete.
ResetRequest
Sends a command to reset all layers and markers.
| name | type | required | description |
|---|---|---|---|
| type | string | ✓ | "ResetRequest" |
| misc | string | Unused |
Example request:
{
"type": "ResetRequest",
"misc": "..."
}
ResetResponse
Returned by Unreal after completing a reset.
Example response:
{
"type": "ResetResponse"
}


