Skip to content

Commit

Permalink
Merge pull request #27320 from frenzibyte/adjust-old-style-spinner
Browse files Browse the repository at this point in the history
Fix old-style legacy spinner fade-in not matching stable
  • Loading branch information
peppy committed Feb 23, 2024
2 parents 7cbfd44 + af6ed85 commit d544b4d
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -92,8 +92,8 @@ protected override void UpdateStateTransforms(DrawableHitObject drawableHitObjec
using (BeginAbsoluteSequence(spinner.StartTime - spinner.TimePreempt))
this.FadeOut();

using (BeginAbsoluteSequence(spinner.StartTime - spinner.TimeFadeIn / 2))
this.FadeInFromZero(spinner.TimeFadeIn / 2);
using (BeginAbsoluteSequence(spinner.StartTime - spinner.TimeFadeIn))
this.FadeInFromZero(spinner.TimeFadeIn);
}

protected override void Update()
Expand Down

0 comments on commit d544b4d

Please sign in to comment.