1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-07 20:42:54 +08:00

Adjust transition length for a more seamless screen change

This commit is contained in:
Dean Herbert 2022-05-10 17:47:04 +09:00
parent 493798ae5e
commit 25c6226ca9

View File

@ -68,7 +68,7 @@ namespace osu.Game.Overlays.FirstRunSetup
{ {
base.OnEntering(e); base.OnEntering(e);
this this
.FadeInFromZero(500) .FadeInFromZero(100)
.MoveToX(offset) .MoveToX(offset)
.MoveToX(0, 500, Easing.OutQuint); .MoveToX(0, 500, Easing.OutQuint);
} }
@ -77,7 +77,7 @@ namespace osu.Game.Overlays.FirstRunSetup
{ {
base.OnResuming(e); base.OnResuming(e);
this this
.FadeInFromZero(500) .FadeInFromZero(100)
.MoveToX(0, 500, Easing.OutQuint); .MoveToX(0, 500, Easing.OutQuint);
} }