1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-13 21:53:22 +08:00

Simplify fade-out transform

This commit is contained in:
Bartłomiej Dach 2022-03-16 21:49:04 +01:00
parent 03d3969b38
commit a8cefca685
No known key found for this signature in database
GPG Key ID: BCECCD4FA41F6497

View File

@ -148,7 +148,7 @@ namespace osu.Game.Tests.Visual.Online
private void leaveChannel(Channel channel) private void leaveChannel(Channel channel)
{ {
leaveText.Text = $"OnRequestLeave: {channel.Name}"; leaveText.Text = $"OnRequestLeave: {channel.Name}";
leaveText.FadeIn().Then().FadeOut(1000, Easing.InQuint); leaveText.FadeOutFromOne(1000, Easing.InQuint);
} }
private static Channel createPublicChannel(string name) => private static Channel createPublicChannel(string name) =>