diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-09-26 15:51:31 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-09-26 15:51:31 +0200 |
commit | b9a64c77366361a0d45dcdd2b330911efd1eb3f4 (patch) | |
tree | 925aa3f1919487673e08f62cc4ec01cd4c5705a1 /modules/openxr/SCsub | |
parent | 6fcf2a2862ee406873aebd0bd8afcd99ed45564b (diff) | |
parent | 23d32c0e166b19011f816431a4705e43d6c41eb2 (diff) |
Merge pull request #60313 from BastiaanOlij/xr_hand_tracking
Adding OpenXR hand tracking support
Diffstat (limited to 'modules/openxr/SCsub')
-rw-r--r-- | modules/openxr/SCsub | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/openxr/SCsub b/modules/openxr/SCsub index 298977f96d..11cc525484 100644 --- a/modules/openxr/SCsub +++ b/modules/openxr/SCsub @@ -83,6 +83,7 @@ module_obj = [] env_openxr.add_source_files(module_obj, "*.cpp") env_openxr.add_source_files(module_obj, "action_map/*.cpp") +env_openxr.add_source_files(module_obj, "scene/*.cpp") # We're a little more targeted with our extensions if env["platform"] == "android": @@ -91,6 +92,7 @@ if env["vulkan"]: env_openxr.add_source_files(module_obj, "extensions/openxr_vulkan_extension.cpp") env_openxr.add_source_files(module_obj, "extensions/openxr_htc_vive_tracker_extension.cpp") +env_openxr.add_source_files(module_obj, "extensions/openxr_hand_tracking_extension.cpp") env.modules_sources += module_obj |