From 869fd98d7f0de2d82309f6112210b06e34beede5 Mon Sep 17 00:00:00 2001 From: Schmarni Date: Fri, 20 Dec 2024 03:54:28 +0100 Subject: [PATCH] update hand gizmos to include the local axes Signed-off-by: Schmarni --- crates/bevy_xr_utils/src/hand_gizmos.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/bevy_xr_utils/src/hand_gizmos.rs b/crates/bevy_xr_utils/src/hand_gizmos.rs index 1c270b6..29c3cfe 100644 --- a/crates/bevy_xr_utils/src/hand_gizmos.rs +++ b/crates/bevy_xr_utils/src/hand_gizmos.rs @@ -30,6 +30,7 @@ fn draw_hand_gizmos( rotation: pose.rotation, }; gizmos.sphere(pose, **radius, gizmo_color(bone)); + gizmos.axes(pose, **radius); } }