From 86a7bf7317e2aaf2df0eff2ace55a1a065ec626e Mon Sep 17 00:00:00 2001 From: Schmarni Date: Tue, 14 Nov 2023 02:45:29 +0100 Subject: [PATCH] make hands default back to Handtracking if the extension is available --- src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 43c4d1ad..cc7ed28f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -148,7 +148,6 @@ impl Plugin for OpenXrPlugin { .insert_resource(frame_state.clone()) .insert_resource(action_sets.clone()); let hands = xr_instance.exts().ext_hand_tracking.is_some(); - let hands = false; if hands { app.insert_resource(HandTrackingTracker::new(&session).unwrap()); app.insert_resource(HandInputSource::OpenXr);