From 68cb23786a0c9a1f96926118d65b0513289c1652 Mon Sep 17 00:00:00 2001 From: DrabWeb Date: Fri, 19 May 2017 20:53:51 -0300 Subject: [PATCH] Fade in background when loaded --- osu.Game/Overlays/Direct/DirectPanel.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/osu.Game/Overlays/Direct/DirectPanel.cs b/osu.Game/Overlays/Direct/DirectPanel.cs index d349a65d57..9aae719d5c 100644 --- a/osu.Game/Overlays/Direct/DirectPanel.cs +++ b/osu.Game/Overlays/Direct/DirectPanel.cs @@ -40,6 +40,7 @@ namespace osu.Game.Overlays.Direct { FillMode = FillMode.Fill, Texture = new OnlineWorkingBeatmap(SetInfo.Beatmaps.FirstOrDefault(), textures, null).Background, + OnLoadComplete = d => d.FadeInFromZero(400, EasingTypes.Out), }) { RelativeSizeAxes = Axes.Both }; }