openxr: separate release threshold for grab, click, altclick

This commit is contained in:
galister
2024-03-21 21:47:08 +01:00
parent 0b813aeb10
commit 9fe9832a8d
2 changed files with 30 additions and 3 deletions

View File

@@ -126,6 +126,15 @@ pub struct GeneralConfig {
#[serde(default = "def_point7")]
pub xr_alt_click_sensitivity: f32,
#[serde(default = "def_half")]
pub xr_grab_sensitivity_release: f32,
#[serde(default = "def_half")]
pub xr_click_sensitivity_release: f32,
#[serde(default = "def_half")]
pub xr_alt_click_sensitivity_release: f32,
}
impl GeneralConfig {