From c5e4f3eb7453bba1b907673ff49ced9f380c54fa Mon Sep 17 00:00:00 2001 From: Bastiaan Olij Date: Mon, 11 Sep 2023 13:44:03 +1000 Subject: [PATCH] OpenXR fix missing add profile for hauwei --- modules/openxr/action_map/openxr_action_map.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/openxr/action_map/openxr_action_map.cpp b/modules/openxr/action_map/openxr_action_map.cpp index 652e5fc4070..6d79e33de8c 100644 --- a/modules/openxr/action_map/openxr_action_map.cpp +++ b/modules/openxr/action_map/openxr_action_map.cpp @@ -470,6 +470,7 @@ void OpenXRActionMap::create_default_action_sets() { profile->add_new_binding(primary_click, "/user/hand/left/input/trackpad/click,/user/hand/right/input/trackpad/click"); profile->add_new_binding(primary_touch, "/user/hand/left/input/trackpad/touch,/user/hand/right/input/trackpad/touch"); profile->add_new_binding(haptic, "/user/hand/left/output/haptic,/user/hand/right/output/haptic"); + add_interaction_profile(profile); // Create our HTC Vive tracker profile profile = OpenXRInteractionProfile::new_profile("/interaction_profiles/htc/vive_tracker_htcx");