mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 07:06:35 +09:00
Switch DelayedLoadUnloadWrappers to DelayedLoadWrappers
Due to pooling usage, there is no time we need to unload. Switching to DelayedLoadWrapper cleans up the code and reduces overhead substantially.
This commit is contained in:
@ -69,29 +69,25 @@ namespace osu.Game.Screens.Select.Carousel
|
||||
if (Item == null)
|
||||
return;
|
||||
|
||||
DelayedLoadWrapper background;
|
||||
DelayedLoadWrapper mainFlow;
|
||||
|
||||
Header.Children = new Drawable[]
|
||||
{
|
||||
new DelayedLoadUnloadWrapper(() =>
|
||||
{
|
||||
var background = new SetPanelBackground(manager.GetWorkingBeatmap(beatmapSet.Beatmaps.FirstOrDefault()))
|
||||
background = new DelayedLoadWrapper(new SetPanelBackground(manager.GetWorkingBeatmap(beatmapSet.Beatmaps.FirstOrDefault()))
|
||||
{
|
||||
RelativeSizeAxes = Axes.Both,
|
||||
}, 300),
|
||||
mainFlow = new DelayedLoadWrapper(new SetPanelContent((CarouselBeatmapSet)Item), 100),
|
||||
};
|
||||
|
||||
background.OnLoadComplete += d => d.FadeInFromZero(1000, Easing.OutQuint);
|
||||
background.DelayedLoadComplete += fadeContentIn;
|
||||
mainFlow.DelayedLoadComplete += fadeContentIn;
|
||||
}
|
||||
|
||||
return background;
|
||||
}, 300, 5000),
|
||||
new DelayedLoadUnloadWrapper(() =>
|
||||
private void fadeContentIn(Drawable d)
|
||||
{
|
||||
// main content split into own class to reduce allocation before load operation triggers.
|
||||
var mainFlow = new SetPanelContent((CarouselBeatmapSet)Item);
|
||||
|
||||
mainFlow.OnLoadComplete += d => d.FadeInFromZero(1000, Easing.OutQuint);
|
||||
|
||||
return mainFlow;
|
||||
}, 100, 5000)
|
||||
};
|
||||
d.FadeInFromZero(1000, Easing.OutQuint);
|
||||
}
|
||||
|
||||
protected override void Deselected()
|
||||
|
Reference in New Issue
Block a user