1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 15:27:26 +08:00

Remove explicit life time end.

This commit is contained in:
smoogipooo 2017-03-29 09:12:21 +09:00
parent 6d5b0a13e4
commit d74454141b
2 changed files with 0 additions and 3 deletions

View File

@ -124,8 +124,6 @@ namespace osu.Game.Modes.Taiko.Objects.Drawable
{
base.LoadComplete();
LifetimeEnd = double.MaxValue;
targetRing.Delay(HitObject.StartTime - Time.Current).ScaleTo(target_ring_scale, 600, EasingTypes.OutQuint);
}

View File

@ -30,7 +30,6 @@ namespace osu.Game.Modes.Taiko.Objects.Drawable
protected override void LoadComplete()
{
LifetimeStart = HitObject.StartTime - HitObject.PreEmpt * 2;
LifetimeEnd = HitObject.StartTime + HitObject.PreEmpt;
base.LoadComplete();
}