Merge branch 'reset-dho-lifetimes' into fix-catch-rewind

This commit is contained in:
Dean Herbert
2019-09-12 19:40:26 +09:00
85 changed files with 995 additions and 330 deletions

View File

@ -75,11 +75,11 @@ namespace osu.Game.Rulesets.Catch.Objects.Drawable
switch (state)
{
case ArmedState.Miss:
this.FadeOut(250).RotateTo(Rotation * 2, 250, Easing.Out).Expire();
this.FadeOut(250).RotateTo(Rotation * 2, 250, Easing.Out);
break;
case ArmedState.Hit:
this.FadeOut().Expire();
this.FadeOut();
break;
}
}