mirror of
https://github.com/overte-org/overte.git
synced 2025-04-05 19:00:28 +02:00
OpenXrInputPlugin: Tweak hand offset slightly
This commit is contained in:
parent
36768b6b88
commit
1b95f97457
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue