1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 16:32:54 +08:00

Rescale chevron up and down instead

This commit is contained in:
Salman Ahmed 2024-07-08 08:07:45 +03:00
parent a0ffe9bcbc
commit 22f2f83695

View File

@ -88,7 +88,7 @@ namespace osu.Game.Overlays.Mods
Expanded.BindValueChanged(v => Expanded.BindValueChanged(v =>
{ {
icon.RotateTo(v.NewValue ? 180 : 0); icon.ScaleTo(v.NewValue ? new Vector2(1, -1) : Vector2.One, 300, Easing.OutQuint);
}, true); }, true);
} }
} }