change ringfinger color back to the same green as before bevy update

Signed-off-by: Schmarni <marnistromer@gmail.com>
This commit is contained in:
Schmarni
2024-07-18 15:19:58 +02:00
parent fd2e04656d
commit 4de9691478

View File

@@ -27,7 +27,7 @@ fn gizmo_color(bone: &HandBone) -> Srgba {
b if b.is_thumb() => css::RED, b if b.is_thumb() => css::RED,
b if b.is_index() => css::ORANGE, b if b.is_index() => css::ORANGE,
b if b.is_middle() => css::YELLOW, 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, b if b.is_little() => css::BLUE,
// should be impossible to hit // should be impossible to hit
_ => Srgba::rgb(1.0, 0.0, 1.0), _ => Srgba::rgb(1.0, 0.0, 1.0),