mirror of
https://github.com/ppy/osu.git
synced 2026-05-13 20:33:35 +08:00
43 lines
1.4 KiB
C#
43 lines
1.4 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 System.Collections.Generic;
|
|
using osu.Framework.Localisation;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Configuration;
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Mods
|
|
{
|
|
public class TaikoModDifficultyAdjust : ModDifficultyAdjust
|
|
{
|
|
[SettingSource("Scroll Speed", "Adjust a beatmap's set scroll speed", LAST_SETTING_ORDER + 1, SettingControlType = typeof(DifficultyAdjustSettingsControl))]
|
|
public DifficultyBindable ScrollSpeed { get; } = new DifficultyBindable
|
|
{
|
|
Precision = 0.05f,
|
|
MinValue = 0.25f,
|
|
MaxValue = 4,
|
|
ReadCurrentFromDifficulty = _ => 1,
|
|
};
|
|
|
|
public override IEnumerable<(LocalisableString setting, LocalisableString value)> SettingDescription
|
|
{
|
|
get
|
|
{
|
|
foreach (var setting in base.SettingDescription)
|
|
yield return setting;
|
|
|
|
if (!ScrollSpeed.IsDefault)
|
|
yield return ("Scroll speed", $"x{ScrollSpeed.Value:N2}");
|
|
}
|
|
}
|
|
|
|
protected override void ApplySettings(BeatmapDifficulty difficulty)
|
|
{
|
|
base.ApplySettings(difficulty);
|
|
|
|
if (ScrollSpeed.Value != null) difficulty.SliderMultiplier *= ScrollSpeed.Value.Value;
|
|
}
|
|
}
|
|
}
|