Skip to content

Commit

Permalink
Merge pull request #26876 from peppy/slider-miss-last-longer
Browse files Browse the repository at this point in the history
Adjust slider tick / end misses to show slightly longer
  • Loading branch information
bdach authored Jan 31, 2024
2 parents edab056 + ebf637b commit e7cfbd3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public void PlayAnimation()
this.ScaleTo(1.4f);
this.ScaleTo(1f, 150, Easing.Out);

this.FadeOutFromOne(400);
this.FadeOutFromOne(600);
}

public Drawable? GetAboveHitObjectsProxiedContent() => piece.CreateProxy();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public void PlayAnimation()
this.ScaleTo(1.4f);
this.ScaleTo(1f, 150, Easing.Out);

this.FadeOutFromOne(400);
this.FadeOutFromOne(600);
}

public Drawable? GetAboveHitObjectsProxiedContent() => piece.CreateProxy();
Expand Down
2 changes: 1 addition & 1 deletion osu.Game/Skinning/LegacyJudgementPieceOld.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public virtual void PlayAnimation()
this.ScaleTo(1.2f);
this.ScaleTo(1f, 100, Easing.In);

this.FadeOutFromOne(400);
this.Delay(fade_out_delay / 2).FadeOut(fade_out_length);
}
else
{
Expand Down

0 comments on commit e7cfbd3

Please sign in to comment.