1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 13:22:55 +08:00

Adjust easing type to match in disposal clause

Co-Authored-By: Dan Balasescu <smoogipoo@smgi.me>
This commit is contained in:
Dean Herbert 2020-02-21 08:55:12 +09:00 committed by GitHub
parent 7adedcb7b9
commit 6c21cc3926
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -81,7 +81,7 @@ namespace osu.Game.Graphics.UserInterface
if (State.Value == Visibility.Visible)
{
// ensure we don't leave the target in a bad state.
dimTarget?.FadeColour(Color4.White, transition_duration);
dimTarget?.FadeColour(Color4.White, transition_duration, Easing.OutQuint);
}
}
}