From 4de9691478dbe2719df08e1029956ac2a60d5a1f Mon Sep 17 00:00:00 2001 From: Schmarni Date: Thu, 18 Jul 2024 15:19:58 +0200 Subject: [PATCH] change ringfinger color back to the same green as before bevy update Signed-off-by: Schmarni --- crates/bevy_xr_utils/src/hand_gizmos.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_xr_utils/src/hand_gizmos.rs b/crates/bevy_xr_utils/src/hand_gizmos.rs index 6c96cfe..e159af9 100644 --- a/crates/bevy_xr_utils/src/hand_gizmos.rs +++ b/crates/bevy_xr_utils/src/hand_gizmos.rs @@ -27,7 +27,7 @@ fn gizmo_color(bone: &HandBone) -> Srgba { b if b.is_thumb() => css::RED, b if b.is_index() => css::ORANGE, b if b.is_middle() => css::YELLOW, - b if b.is_ring() => css::GREEN, + b if b.is_ring() => Srgba::rgb(0.0, 1.0, 0.0), b if b.is_little() => css::BLUE, // should be impossible to hit _ => Srgba::rgb(1.0, 0.0, 1.0),