1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-13 16:13:34 +08:00

Merge pull request #26876 from peppy/slider-miss-last-longer

Adjust slider tick / end misses to show slightly longer
This commit is contained in:
Bartłomiej Dach 2024-01-31 10:43:58 +01:00 committed by GitHub
commit e7cfbd3c56
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@ namespace osu.Game.Rulesets.Osu.Skinning.Argon
this.ScaleTo(1.4f);
this.ScaleTo(1f, 150, Easing.Out);
this.FadeOutFromOne(400);
this.FadeOutFromOne(600);
}
public Drawable? GetAboveHitObjectsProxiedContent() => piece.CreateProxy();

View File

@ -44,7 +44,7 @@ namespace osu.Game.Rulesets.Osu.Skinning.Default
this.ScaleTo(1.4f);
this.ScaleTo(1f, 150, Easing.Out);
this.FadeOutFromOne(400);
this.FadeOutFromOne(600);
}
public Drawable? GetAboveHitObjectsProxiedContent() => piece.CreateProxy();

View File

@ -62,7 +62,7 @@ namespace osu.Game.Skinning
this.ScaleTo(1.2f);
this.ScaleTo(1f, 100, Easing.In);
this.FadeOutFromOne(400);
this.Delay(fade_out_delay / 2).FadeOut(fade_out_length);
}
else
{