mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 16:02:55 +08:00
Avoid fast fade out if slider head was not hit
This commit is contained in:
parent
cf9ca60b09
commit
0360646e9b
@ -317,7 +317,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables
|
||||
switch (state)
|
||||
{
|
||||
case ArmedState.Hit:
|
||||
if (SliderBody?.SnakingOut.Value == true)
|
||||
if (HeadCircle.IsHit && SliderBody?.SnakingOut.Value == true)
|
||||
Body.FadeOut(40); // short fade to allow for any body colour to smoothly disappear.
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user