mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 15:16:38 +09:00
introduce main menu background modes
This commit is contained in:
12
osu.Game/Configuration/BackgroundMode.cs
Normal file
12
osu.Game/Configuration/BackgroundMode.cs
Normal file
@ -0,0 +1,12 @@
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
namespace osu.Game.Configuration
|
||||
{
|
||||
public enum BackgroundMode
|
||||
{
|
||||
Default,
|
||||
Seasonal,
|
||||
Beatmap
|
||||
}
|
||||
}
|
@ -117,6 +117,8 @@ namespace osu.Game.Configuration
|
||||
Set(OsuSetting.UIHoldActivationDelay, 200, 0, 500);
|
||||
|
||||
Set(OsuSetting.IntroSequence, IntroSequence.Triangles);
|
||||
|
||||
Set(OsuSetting.BackgroundMode, BackgroundMode.Default);
|
||||
}
|
||||
|
||||
public OsuConfigManager(Storage storage)
|
||||
@ -186,6 +188,7 @@ namespace osu.Game.Configuration
|
||||
UIScale,
|
||||
IntroSequence,
|
||||
UIHoldActivationDelay,
|
||||
HitLighting
|
||||
HitLighting,
|
||||
BackgroundMode
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user