Skip to content

Commit

Permalink
Add footnote about required restarts
Browse files Browse the repository at this point in the history
  • Loading branch information
rblenkinsopp committed Apr 9, 2024
1 parent adffe5a commit 1270984
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions doc/DebugRequestAPI.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,15 @@ available in the configuration (sometimes with a slightly altered form to allow
Hand-Mounted Display (HMD) tracker or desktop tracker (in meters). For example: `[1.0, 2.0, 3.0]`.

- `enable_elbow_trackers`: A boolean indicating whether elbow trackers are enabled. `true` indicates enabled and `false`
indicates disabled.
indicates disabled.[^1]

- `external_input_only`: A boolean indicating whether only external inputs should be used. When `true`, only external
inputs are used (other than for finger curl and skeleton bones).

- `extended_hand_profile`: A boolean indicating whether the extended hand-profile should be enabled.
- `extended_hand_profile`: A boolean indicating whether the extended hand-profile should be enabled.[^1]

[^1]: This Setting requires a restart to take effect. If this is changed programatically, this will automatically
request a restart from the user.

### Example

Expand All @@ -54,8 +57,16 @@ available in the configuration (sometimes with a slightly altered form to allow
},
"settings": {
"tracking_mode": "hmd",
"hmd_tracker_offset": [1.0, 2.0, 3.0],
"desktop_tracker_offset": [1.0, 2.0, 3.0],
"hmd_tracker_offset": [
1.0,
2.0,
3.0
],
"desktop_tracker_offset": [
1.0,
2.0,
3.0
],
"enable_elbow_trackers": true,
"external_input_only": false
}
Expand Down

0 comments on commit 1270984

Please sign in to comment.