Adjust input drum transition slightly.

This commit is contained in:
Dean Herbert 2017-03-27 15:49:32 +09:00
parent d6d19d726b
commit b8c8ca2f0e
No known key found for this signature in database
GPG Key ID: 46D71BF4958ABB49
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ protected override bool OnKeyDown(InputState state, KeyDownEventArgs args)
{
target.FadeTo(Math.Min(target.Alpha + 0.4f, 1), 40, EasingTypes.OutQuint);
target.Delay(40);
target.FadeOut(600, EasingTypes.OutQuint);
target.FadeOut(1000, EasingTypes.OutQuint);
}
return false;