mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 11:27:24 +08:00
31 lines
1.1 KiB
C#
31 lines
1.1 KiB
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.Timing
|
|
{
|
|
/// <summary>
|
|
/// A <see cref="ScrollingContainer"/> which scrolls linearly relative to the <see cref="MultiplierControlPoint"/> start time.
|
|
/// </summary>
|
|
internal class LinearScrollingContainer : ScrollingContainer
|
|
{
|
|
private readonly Axes scrollingAxes;
|
|
private readonly MultiplierControlPoint controlPoint;
|
|
|
|
public LinearScrollingContainer(Axes scrollingAxes, MultiplierControlPoint controlPoint)
|
|
{
|
|
this.scrollingAxes = scrollingAxes;
|
|
this.controlPoint = controlPoint;
|
|
}
|
|
|
|
protected override void Update()
|
|
{
|
|
base.Update();
|
|
|
|
if ((scrollingAxes & Axes.X) > 0) X = (float)(controlPoint.StartTime - Time.Current);
|
|
if ((scrollingAxes & Axes.Y) > 0) Y = (float)(controlPoint.StartTime - Time.Current);
|
|
}
|
|
}
|
|
}
|