mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 06:47:25 +08:00
Merge pull request #1066 from peppy/button-visually-disables
Make OsuButtons visually disable when not enabled
This commit is contained in:
commit
4d47beb2f1
@ -68,6 +68,14 @@ namespace osu.Game.Graphics.UserInterface
|
||||
|
||||
sampleClick = audio.Sample.Get(@"UI/generic-click");
|
||||
sampleHover = audio.Sample.Get(@"UI/generic-hover");
|
||||
|
||||
Enabled.ValueChanged += enabled_ValueChanged;
|
||||
Enabled.TriggerChange();
|
||||
}
|
||||
|
||||
private void enabled_ValueChanged(bool enabled)
|
||||
{
|
||||
this.FadeColour(enabled ? Color4.White : Color4.Gray, 200, Easing.OutQuint);
|
||||
}
|
||||
|
||||
protected override bool OnClick(InputState state)
|
||||
|
Loading…
Reference in New Issue
Block a user