Adjust tick appear/disappear animations.

This commit is contained in:
Dean Herbert 2017-02-16 13:33:59 +09:00
parent c90f5e247d
commit 97b782128e
No known key found for this signature in database
GPG Key ID: 46D71BF4958ABB49
1 changed files with 4 additions and 4 deletions

View File

@ -81,12 +81,12 @@ protected override void UpdateState(ArmedState state)
FadeOut();
break;
case ArmedState.Miss:
FadeTo(0.6f);
Delay(FadeOutTime - sliderTick.StartTime);
FadeOut();
FadeOut(160);
FadeColour(Color4.Red, 80);
break;
case ArmedState.Hit:
FadeOut();
FadeOut(120, EasingTypes.OutQuint);
ScaleTo(Scale * 1.5f, 120, EasingTypes.OutQuint);
break;
}
}