Merge branch 'master' into fix-notification-threading

This commit is contained in:
Dean Herbert 2017-07-31 16:39:53 +09:00 committed by GitHub
commit 063add6d10
1 changed files with 8 additions and 0 deletions

View File

@ -68,6 +68,14 @@ private void load(OsuColour colours, AudioManager audio)
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)