Update mods and user adjust to use adjustments

This commit is contained in:
Dean Herbert
2019-12-09 19:41:31 +09:00
parent 6b667daf09
commit 7fd52c21f5
7 changed files with 32 additions and 38 deletions

View File

@ -0,0 +1,22 @@
// 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 System;
using osu.Framework.Audio;
using osu.Framework.Audio.Track;
using osu.Framework.Bindables;
namespace osu.Game.Rulesets.Mods
{
public abstract class ModRateAdjust : Mod, IApplicableToTrack
{
public override Type[] IncompatibleMods => new[] { typeof(ModTimeRamp) };
public abstract BindableNumber<double> SpeedChange { get; }
public virtual void ApplyToTrack(Track track)
{
track.AddAdjustment(AdjustableProperty.Tempo, SpeedChange);
}
}
}