Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust slider tick / end misses to show slightly longer #26876

Merged
merged 1 commit into from Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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
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
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