Update animations to final versions

This commit is contained in:
Dean Herbert 2022-08-01 18:03:32 +09:00
parent 0b8d3cbce9
commit e0940c6c22
2 changed files with 4 additions and 9 deletions

View File

@ -59,11 +59,9 @@ namespace osu.Game.Rulesets.Osu.Skinning.Default
protected override void OnSliderTick()
{
// TODO: Follow circle should bounce on each slider tick.
// TEMP DUMMY ANIMS
this.ScaleTo(DrawableSliderBall.FOLLOW_AREA * 1.1f)
.ScaleTo(DrawableSliderBall.FOLLOW_AREA, 175f);
this.ScaleTo(DrawableSliderBall.FOLLOW_AREA * 1.08f, 40, Easing.OutQuint)
.Then()
.ScaleTo(DrawableSliderBall.FOLLOW_AREA, 200f, Easing.OutQuint);
}
protected override void OnSliderBreak()

View File

@ -44,11 +44,8 @@ namespace osu.Game.Rulesets.Osu.Skinning.Legacy
protected override void OnSliderTick()
{
// TODO: Follow circle should bounce on each slider tick.
// TEMP DUMMY ANIMS
this.ScaleTo(2.2f)
.ScaleTo(2f, 175f);
.ScaleTo(2f, 200);
}
protected override void OnSliderBreak()