mirror of
https://github.com/ppy/osu
synced 2025-03-06 03:19:47 +00:00
Merge pull request #21276 from peppy/eager-triangles-disposal
Eagerly dispose of triangles intro textures to avoid holding for full length of game session
This commit is contained in:
commit
c34dd27674
@ -224,8 +224,8 @@ namespace osu.Game.Screens.Menu
|
||||
{
|
||||
rulesetsScale.ScaleTo(0.8f, 1000);
|
||||
rulesets.FadeIn().ScaleTo(1).TransformSpacingTo(new Vector2(200, 0));
|
||||
welcomeText.FadeOut();
|
||||
triangles.FadeOut();
|
||||
welcomeText.FadeOut().Expire();
|
||||
triangles.FadeOut().Expire();
|
||||
}
|
||||
|
||||
using (BeginDelayedSequence(rulesets_2))
|
||||
@ -307,7 +307,7 @@ namespace osu.Game.Screens.Menu
|
||||
}
|
||||
|
||||
[BackgroundDependencyLoader]
|
||||
private void load(TextureStore textures)
|
||||
private void load(LargeTextureStore textures)
|
||||
{
|
||||
InternalChildren = new Drawable[]
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user