mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 23:07:44 +08:00
29 lines
1009 B
C#
29 lines
1009 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.Game.Rulesets.Timing;
|
|
|
|
namespace osu.Game.Rulesets.Mania.Timing
|
|
{
|
|
public class ManiaSpeedAdjustmentContainer : SpeedAdjustmentContainer
|
|
{
|
|
private readonly ScrollingAlgorithm scrollingAlgorithm;
|
|
|
|
public ManiaSpeedAdjustmentContainer(MultiplierControlPoint timingSection, ScrollingAlgorithm scrollingAlgorithm)
|
|
: base(timingSection)
|
|
{
|
|
this.scrollingAlgorithm = scrollingAlgorithm;
|
|
}
|
|
|
|
protected override ScrollingContainer CreateScrollingContainer()
|
|
{
|
|
switch (scrollingAlgorithm)
|
|
{
|
|
default:
|
|
return base.CreateScrollingContainer();
|
|
case ScrollingAlgorithm.Gravity:
|
|
return new GravityScrollingContainer(ControlPoint);
|
|
}
|
|
}
|
|
}
|
|
} |