From 1b95f97457c5a9bd0e49377d70f88a085c969619 Mon Sep 17 00:00:00 2001 From: Ada Date: Tue, 11 Feb 2025 04:06:30 +1000 Subject: [PATCH] OpenXrInputPlugin: Tweak hand offset slightly --- plugins/openxr/src/OpenXrInputPlugin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/openxr/src/OpenXrInputPlugin.cpp b/plugins/openxr/src/OpenXrInputPlugin.cpp index cfd9a6d899..bdf98bd2c3 100644 --- a/plugins/openxr/src/OpenXrInputPlugin.cpp +++ b/plugins/openxr/src/OpenXrInputPlugin.cpp @@ -556,9 +556,9 @@ void OpenXrInputPlugin::InputDevice::update(float deltaTime, const controller::I // offset constants taken from OpenComposite // and tweaked to fit my hands as best i could glm::mat4 posOffset(1.0f); - posOffset *= glm::translate(glm::vec3(handOffset[0]) * (i == 0 ? 0.04f : -0.04f)); + posOffset *= glm::translate(glm::vec3(handOffset[0]) * (i == 0 ? 0.1f : -0.1f)); posOffset *= glm::translate(glm::vec3(handOffset[1]) * -0.16f); - posOffset *= glm::translate(glm::vec3(handOffset[2]) * -0.04f); + posOffset *= glm::translate(glm::vec3(handOffset[2]) * -0.02f); _poseStateMap[i == 0 ? controller::LEFT_HAND : controller::RIGHT_HAND] = pose.postTransform(posOffset).postTransform(handOffset).transform(sensorToAvatar); }