Bring back scheduling of follow point update

This commit is contained in:
ekrctb
2021-06-04 18:41:02 +09:00
parent 0098ac2760
commit d7da66d876
2 changed files with 11 additions and 8 deletions

View File

@ -13,7 +13,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Connections
{
public class FollowPointLifetimeEntry : LifetimeEntry
{
public event Action<FollowPointLifetimeEntry>? Invalidated;
public event Action? Invalidated;
public readonly OsuHitObject Start;
public FollowPointLifetimeEntry(OsuHitObject start)
@ -91,7 +91,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Connections
LifetimeStart = fadeInTime;
LifetimeEnd = double.MaxValue; // This will be set by the connection.
Invalidated?.Invoke(this);
Invalidated?.Invoke();
}
}
}