1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-22 01:59:53 +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
Unverified
3 changed files with 3 additions and 3 deletions
@@ -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();
@@ -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();
+1 -1
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
{