diff options
author | Bastiaan Olij <mux213@gmail.com> | 2022-04-17 12:58:09 +1000 |
---|---|---|
committer | Bastiaan Olij <mux213@gmail.com> | 2022-09-26 19:47:06 +1000 |
commit | 23d32c0e166b19011f816431a4705e43d6c41eb2 (patch) | |
tree | b0b5157bdd2397a0e3047a41a264d141c623267b /modules/openxr/openxr_api.cpp | |
parent | 3472bdd6b6dd7c085b716caabdda16f88e6f167e (diff) | |
download | redot-engine-23d32c0e166b19011f816431a4705e43d6c41eb2.tar.gz |
Adding OpenXR hand tracking support
Diffstat (limited to 'modules/openxr/openxr_api.cpp')
-rw-r--r-- | modules/openxr/openxr_api.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/openxr/openxr_api.cpp b/modules/openxr/openxr_api.cpp index 76f7b2a60a..08b76ddc6b 100644 --- a/modules/openxr/openxr_api.cpp +++ b/modules/openxr/openxr_api.cpp @@ -49,6 +49,7 @@ #include "extensions/openxr_vulkan_extension.h" #endif +#include "extensions/openxr_hand_tracking_extension.h" #include "extensions/openxr_htc_vive_tracker_extension.h" #include "modules/openxr/openxr_interface.h" @@ -1742,6 +1743,7 @@ OpenXRAPI::OpenXRAPI() { // register our other extensions register_extension_wrapper(memnew(OpenXRHTCViveTrackerExtension(this))); + register_extension_wrapper(memnew(OpenXRHandTrackingExtension(this))); } OpenXRAPI::~OpenXRAPI() { |