mirror of
https://github.com/ppy/osu.git
synced 2024-11-19 16:52:56 +08:00
29 lines
925 B
C#
29 lines
925 B
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
namespace osu.Game.Rulesets.Mania.Timing.Drawables
|
|
{
|
|
public class DrawableManiaTimingChange : DrawableTimingChange
|
|
{
|
|
public DrawableManiaTimingChange(TimingChange timingChange)
|
|
: base(timingChange, Axes.Y)
|
|
{
|
|
}
|
|
|
|
protected override void UpdateAfterChildren()
|
|
{
|
|
base.UpdateAfterChildren();
|
|
|
|
var parent = Parent as IHasTimeSpan;
|
|
|
|
if (parent == null)
|
|
return;
|
|
|
|
// This is very naive and can be improved, but is adequate for now
|
|
LifetimeStart = TimingChange.Time - parent.TimeSpan.Y;
|
|
LifetimeEnd = TimingChange.Time + Content.RelativeCoordinateSpace.Y * 2;
|
|
}
|
|
}
|
|
} |