mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 13:47:38 +08:00
34 lines
1.0 KiB
C#
34 lines
1.0 KiB
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using osu.Framework.Bindables;
|
|
|
|
namespace osu.Game.Beatmaps.ControlPoints
|
|
{
|
|
public class DifficultyControlPoint : ControlPoint
|
|
{
|
|
/// <summary>
|
|
/// The speed multiplier at this control point.
|
|
/// </summary>
|
|
public readonly BindableDouble SpeedMultiplierBindable = new BindableDouble(1)
|
|
{
|
|
Precision = 0.1,
|
|
Default = 1,
|
|
MinValue = 0.1,
|
|
MaxValue = 10
|
|
};
|
|
|
|
/// <summary>
|
|
/// The speed multiplier at this control point.
|
|
/// </summary>
|
|
public double SpeedMultiplier
|
|
{
|
|
get => SpeedMultiplierBindable.Value;
|
|
set => SpeedMultiplierBindable.Value = value;
|
|
}
|
|
|
|
public override bool EquivalentTo(ControlPoint other) =>
|
|
other is DifficultyControlPoint otherTyped && otherTyped.SpeedMultiplier.Equals(SpeedMultiplier);
|
|
}
|
|
}
|