1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 14:17:26 +08:00

Remove 'Soft' select sample variant usage (soft is the new default)

This commit is contained in:
Jamie Taylor 2021-07-29 20:29:11 +09:00
parent 1a921663e3
commit be3c02ff7f
No known key found for this signature in database
GPG Key ID: 2ACFA8B6370B8C8C
4 changed files with 2 additions and 5 deletions

View File

@ -10,8 +10,6 @@ namespace osu.Game.Graphics.UserInterface
[Description("default")]
Default,
[Description("soft")]
Soft,
[Description("button")]
Button,

View File

@ -32,7 +32,7 @@ namespace osu.Game.Graphics.UserInterfaceV2
{
Depth = 1
},
new HoverClickSounds(HoverSampleSet.Soft)
new HoverClickSounds()
});
}

View File

@ -57,7 +57,7 @@ namespace osu.Game.Graphics.UserInterfaceV2
{
Depth = 1
},
new HoverClickSounds(HoverSampleSet.Soft)
new HoverClickSounds()
});
}

View File

@ -67,7 +67,6 @@ namespace osu.Game.Screens.Edit
private EditorClock clock { get; set; }
public RowBackground(object item)
: base(HoverSampleSet.Soft)
{
Item = item;