mirror of
https://github.com/ppy/osu
synced 2024-12-28 18:02:53 +00:00
Update terminology in timing screen for now
This commit is contained in:
parent
766d789845
commit
52b6b05883
@ -10,14 +10,14 @@ namespace osu.Game.Screens.Edit.Timing
|
||||
{
|
||||
internal class DifficultySection : Section<DifficultyControlPoint>
|
||||
{
|
||||
private SliderWithTextBoxInput<double> multiplierSlider;
|
||||
private SliderWithTextBoxInput<double> sliderVelocitySlider;
|
||||
|
||||
[BackgroundDependencyLoader]
|
||||
private void load()
|
||||
{
|
||||
Flow.AddRange(new[]
|
||||
{
|
||||
multiplierSlider = new SliderWithTextBoxInput<double>("Speed Multiplier")
|
||||
sliderVelocitySlider = new SliderWithTextBoxInput<double>("Slider Velocity")
|
||||
{
|
||||
Current = new DifficultyControlPoint().SliderVelocityBindable,
|
||||
KeyboardStep = 0.1f
|
||||
@ -38,8 +38,8 @@ namespace osu.Game.Screens.Edit.Timing
|
||||
if (selectedPointBindable.Precision < expectedPrecision)
|
||||
selectedPointBindable.Precision = expectedPrecision;
|
||||
|
||||
multiplierSlider.Current = selectedPointBindable;
|
||||
multiplierSlider.Current.BindValueChanged(_ => ChangeHandler?.SaveState());
|
||||
sliderVelocitySlider.Current = selectedPointBindable;
|
||||
sliderVelocitySlider.Current.BindValueChanged(_ => ChangeHandler?.SaveState());
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user