ApplyDelay -> AddDelay

This commit is contained in:
Thomas Müller
2017-07-16 17:47:29 +03:00
parent 99221260c4
commit 032e9df67b
27 changed files with 44 additions and 44 deletions

View File

@ -75,14 +75,14 @@ namespace osu.Game.Rulesets.Judgements
this.MoveToOffset(new Vector2(0, 100), 800, EasingTypes.InQuint);
this.RotateTo(40, 800, EasingTypes.InQuint);
ApplyDelay(600);
AddDelay(600);
this.FadeOut(200);
break;
case HitResult.Hit:
this.ScaleTo(0.9f);
this.ScaleTo(1, 500, EasingTypes.OutElastic);
ApplyDelay(100);
AddDelay(100);
this.FadeOut(400);
break;
}