Merge pull request #145 from Schmarni-Dev/fix_green_finger

change ring finger color back to the same green as before bevy update
This commit is contained in:
ForTehLose
2024-08-21 14:10:25 -04:00
committed by GitHub

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),