From 2dcbe18e5bfbb9a36de817a9bd7e9d2aee768ab2 Mon Sep 17 00:00:00 2001 From: Thijs Wenker Date: Fri, 28 Oct 2016 04:07:20 +0200 Subject: [PATCH] Fix for weird avatar Switch Vive -> Desktop mode --- interface/resources/controllers/vive.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/interface/resources/controllers/vive.json b/interface/resources/controllers/vive.json index dce3e9660c..4fbdb37abf 100644 --- a/interface/resources/controllers/vive.json +++ b/interface/resources/controllers/vive.json @@ -34,7 +34,7 @@ { "from": "Vive.RSCenter", "to": "Standard.RightPrimaryThumb" }, { "from": "Vive.RightApplicationMenu", "to": "Standard.RightSecondaryThumb" }, - { "from": "Vive.LeftHand", "to": "Standard.LeftHand" }, - { "from": "Vive.RightHand", "to": "Standard.RightHand" } + { "from": "Vive.LeftHand", "to": "Standard.LeftHand", "when": [ "Application.InHMD" ] }, + { "from": "Vive.RightHand", "to": "Standard.RightHand", "when": [ "Application.InHMD" ] } ] -} \ No newline at end of file +}