mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 09:07:52 +08:00
Remove Expires and RemoveWhenNotAlive override
This commit is contained in:
parent
3bfde7341f
commit
0c3c8141da
@ -13,8 +13,6 @@ namespace osu.Game.Rulesets.Taiko.Skinning.Legacy
|
||||
{
|
||||
public class LegacyHitExplosion : CompositeDrawable, IAnimatableHitExplosion
|
||||
{
|
||||
public override bool RemoveWhenNotAlive => false;
|
||||
|
||||
private readonly Drawable sprite;
|
||||
|
||||
[CanBeNull]
|
||||
@ -73,8 +71,6 @@ namespace osu.Game.Rulesets.Taiko.Skinning.Legacy
|
||||
.Then().ScaleTo(1.1f, animation_time * 0.8)
|
||||
.Then().ScaleTo(0.9f, animation_time * 0.4)
|
||||
.Then().ScaleTo(1f, animation_time * 0.2);
|
||||
|
||||
Expire(true);
|
||||
}
|
||||
|
||||
public void AnimateSecondHit()
|
||||
|
@ -16,8 +16,6 @@ namespace osu.Game.Rulesets.Taiko.UI
|
||||
{
|
||||
internal class DefaultHitExplosion : CircularContainer, IAnimatableHitExplosion
|
||||
{
|
||||
public override bool RemoveWhenNotAlive => false;
|
||||
|
||||
private readonly HitResult result;
|
||||
|
||||
[CanBeNull]
|
||||
@ -73,8 +71,6 @@ namespace osu.Game.Rulesets.Taiko.UI
|
||||
|
||||
this.ScaleTo(3f, 1000, Easing.OutQuint);
|
||||
this.FadeOut(500);
|
||||
|
||||
Expire(true);
|
||||
}
|
||||
|
||||
public void AnimateSecondHit()
|
||||
|
Loading…
Reference in New Issue
Block a user