1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 14:47:23 +08:00

Merge pull request #1066 from peppy/button-visually-disables

Make OsuButtons visually disable when not enabled
This commit is contained in:
Dean Herbert 2017-07-31 16:39:16 +09:00 committed by GitHub
commit 4d47beb2f1

View File

@ -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)