mirror of
https://github.com/ppy/osu.git
synced 2025-01-06 21:12:55 +08:00
Ensure flowing animation starts correctly from zero
This commit is contained in:
parent
aef6ee23eb
commit
59a8603728
@ -169,7 +169,9 @@ namespace osu.Game.Screens.Play.HUD.HitErrorMeters
|
|||||||
|
|
||||||
IsRemoved = false;
|
IsRemoved = false;
|
||||||
|
|
||||||
this.FadeIn();
|
this.FadeIn()
|
||||||
|
// On pool re-use, start flow animation from (0,0).
|
||||||
|
.MoveTo(Vector2.Zero);
|
||||||
|
|
||||||
content.FadeInFromZero(animation_duration, Easing.OutQuint)
|
content.FadeInFromZero(animation_duration, Easing.OutQuint)
|
||||||
.MoveToY(-DrawSize.Y)
|
.MoveToY(-DrawSize.Y)
|
||||||
|
Loading…
Reference in New Issue
Block a user