diff options
author | David Snopek <dsnopek@gmail.com> | 2024-02-20 08:56:59 -0600 |
---|---|---|
committer | David Snopek <dsnopek@gmail.com> | 2024-02-23 12:20:22 -0600 |
commit | 2184fa96985d459f10793f3569f2ca96cb57f839 (patch) | |
tree | 91402fc78e7990c13191fe72f564fa5ba2202947 /servers/xr_server.h | |
parent | 16d61427cab3a8e43f0a9a8ee724fc176b6433c6 (diff) | |
download | redot-engine-2184fa96985d459f10793f3569f2ca96cb57f839.tar.gz |
Provide generic interface for XR hand tracking
Diffstat (limited to 'servers/xr_server.h')
-rw-r--r-- | servers/xr_server.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/servers/xr_server.h b/servers/xr_server.h index 0a4e020a1f..3e45bbb76c 100644 --- a/servers/xr_server.h +++ b/servers/xr_server.h @@ -39,6 +39,7 @@ class XRInterface; class XRPositionalTracker; +class XRHandTracker; class XRFaceTracker; /** @@ -86,7 +87,7 @@ private: Vector<Ref<XRInterface>> interfaces; Dictionary trackers; - + Dictionary hand_trackers; Dictionary face_trackers; Ref<XRInterface> primary_interface; /* we'll identify one interface as primary, this will be used by our viewports */ @@ -187,6 +188,14 @@ public: // Q: Should we add get_suggested_input_names and get_suggested_haptic_names even though we don't use them for the IDE? /* + Hand trackers are objects that expose the tracked joints of a hand. + */ + void add_hand_tracker(const StringName &p_tracker_name, Ref<XRHandTracker> p_hand_tracker); + void remove_hand_tracker(const StringName &p_tracker_name); + Dictionary get_hand_trackers() const; + Ref<XRHandTracker> get_hand_tracker(const StringName &p_tracker_name) const; + + /* Face trackers are objects that expose the tracked blend shapes of a face. */ void add_face_tracker(const StringName &p_tracker_name, Ref<XRFaceTracker> p_face_tracker); |