Improve overall visual clarity and explosion effects

This commit is contained in:
Dean Herbert
2018-06-07 14:27:59 +09:00
parent dff4b360b7
commit f9449e841a
8 changed files with 44 additions and 62 deletions

View File

@ -27,5 +27,18 @@ namespace osu.Game.Rulesets.Mania.Objects.Drawables
if (action != null)
Action = action.Value;
}
protected override void UpdateState(ArmedState state)
{
switch (state)
{
case ArmedState.Miss:
this.FadeOut(150, Easing.In).Expire();
break;
case ArmedState.Hit:
this.FadeOut(150, Easing.OutQuint).Expire();
break;
}
}
}
}