mirror of
https://github.com/ppy/osu.git
synced 2025-02-22 17:22:58 +08:00
Fix hold note tick position + lifetime.
This commit is contained in:
parent
79a9612243
commit
9cd3af11d5
@ -36,9 +36,15 @@ namespace osu.Game.Rulesets.Mania.Objects.Drawables
|
|||||||
Anchor = Anchor.TopCentre;
|
Anchor = Anchor.TopCentre;
|
||||||
Origin = Anchor.TopCentre;
|
Origin = Anchor.TopCentre;
|
||||||
|
|
||||||
|
Y = (float)HitObject.StartTime;
|
||||||
|
|
||||||
RelativeSizeAxes = Axes.X;
|
RelativeSizeAxes = Axes.X;
|
||||||
Size = new Vector2(1);
|
Size = new Vector2(1);
|
||||||
|
|
||||||
|
// Life time managed by the parent DrawableHoldNote
|
||||||
|
LifetimeStart = double.MinValue;
|
||||||
|
LifetimeEnd = double.MaxValue;
|
||||||
|
|
||||||
Children = new[]
|
Children = new[]
|
||||||
{
|
{
|
||||||
glowContainer = new CircularContainer
|
glowContainer = new CircularContainer
|
||||||
|
Loading…
Reference in New Issue
Block a user