1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-08 22:04:47 +08:00

Fix hold note tick position + lifetime.

This commit is contained in:
smoogipooo
2017-09-11 04:45:10 +09:00
Unverified
parent 79a9612243
commit 9cd3af11d5
@@ -36,9 +36,15 @@ namespace osu.Game.Rulesets.Mania.Objects.Drawables
Anchor = Anchor.TopCentre;
Origin = Anchor.TopCentre;
Y = (float)HitObject.StartTime;
RelativeSizeAxes = Axes.X;
Size = new Vector2(1);
// Life time managed by the parent DrawableHoldNote
LifetimeStart = double.MinValue;
LifetimeEnd = double.MaxValue;
Children = new[]
{
glowContainer = new CircularContainer