Skip to content

Commit

Permalink
Adjust transition length for a more seamless screen change
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed May 10, 2022
1 parent 493798a commit 25c6226
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions osu.Game/Overlays/FirstRunSetup/FirstRunSetupScreen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public override void OnEntering(ScreenTransitionEvent e)
{
base.OnEntering(e);
this
.FadeInFromZero(500)
.FadeInFromZero(100)
.MoveToX(offset)
.MoveToX(0, 500, Easing.OutQuint);
}
Expand All @@ -77,7 +77,7 @@ public override void OnResuming(ScreenTransitionEvent e)
{
base.OnResuming(e);
this
.FadeInFromZero(500)
.FadeInFromZero(100)
.MoveToX(0, 500, Easing.OutQuint);
}

Expand Down

0 comments on commit 25c6226

Please sign in to comment.