Stop using visually noisy `bg4` for default backgrounds

This has always really annoyed me.
This commit is contained in:
Dean Herbert 2024-05-03 13:38:27 +08:00
parent 2d0240437a
commit 058bd5ced6
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ public DummyWorkingBeatmap([NotNull] AudioManager audio, TextureStore textures)
protected override IBeatmap GetBeatmap() => new Beatmap();
public override Texture GetBackground() => textures?.Get(@"Backgrounds/bg4");
public override Texture GetBackground() => textures?.Get(@"Backgrounds/bg2");
protected override Track GetBeatmapTrack() => GetVirtualTrack();

View File

@ -422,7 +422,7 @@ public Background(WorkingBeatmap beatmap)
[BackgroundDependencyLoader]
private void load(LargeTextureStore textures)
{
sprite.Texture = beatmap.GetBackground() ?? textures.Get(@"Backgrounds/bg4");
sprite.Texture = beatmap.GetBackground() ?? textures.Get(@"Backgrounds/bg2");
}
}