From 353a9cb3392cb0eb9ed454f64869b7da2b5e2ddb Mon Sep 17 00:00:00 2001 From: ksuprynowicz Date: Fri, 8 Jul 2022 20:40:29 +0200 Subject: [PATCH] Add full body tracking for Windows MR headsets on SteamVR --- interface/resources/qml/hifi/tablet/ControllerSettings.qml | 2 +- interface/resources/qml/hifi/tablet/OpenVrConfiguration.qml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/interface/resources/qml/hifi/tablet/ControllerSettings.qml b/interface/resources/qml/hifi/tablet/ControllerSettings.qml index d6c04ab420..28fea649c0 100644 --- a/interface/resources/qml/hifi/tablet/ControllerSettings.qml +++ b/interface/resources/qml/hifi/tablet/ControllerSettings.qml @@ -27,7 +27,7 @@ Item { width: parent.width property string title: "Controls" - property var openVRDevices: ["HTC Vive", "Valve Index", "Valve HMD", "Valve"] + property var openVRDevices: ["HTC Vive", "Valve Index", "Valve HMD", "Valve", "WindowsMR"] HifiConstants { id: hifi } diff --git a/interface/resources/qml/hifi/tablet/OpenVrConfiguration.qml b/interface/resources/qml/hifi/tablet/OpenVrConfiguration.qml index 5a6a5dc2f1..b2de480842 100644 --- a/interface/resources/qml/hifi/tablet/OpenVrConfiguration.qml +++ b/interface/resources/qml/hifi/tablet/OpenVrConfiguration.qml @@ -1045,8 +1045,8 @@ Flickable { var hmdDesktopPosition = settings["hmdDesktopTracking"]; var eyeTrackingEnabled = settings["eyeTrackingEnabled"]; - armCircumference.realValue = settings.armCircumference; - shoulderWidth.realValue = settings.shoulderWidth; + armCircumference.realValue = settings["armCircumference"]; + shoulderWidth.realValue = settings["shoulderWidth"]; if (HmdHead) { headBox.checked = true;