Skip to content

Commit

Permalink
Merge pull request #145 from Schmarni-Dev/fix_green_finger
Browse files Browse the repository at this point in the history
change ring finger color back to the same green as before bevy update
  • Loading branch information
ForTehLose authored Aug 21, 2024
2 parents a4969f6 + 4de9691 commit 120c245
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_xr_utils/src/hand_gizmos.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit 120c245

Please # to comment.