mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 22:07:40 +08:00
47 lines
1.5 KiB
C#
47 lines
1.5 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.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Game.Beatmaps.ControlPoints;
|
|
using osu.Game.Graphics.UserInterfaceV2;
|
|
|
|
namespace osu.Game.Screens.Edit.Timing
|
|
{
|
|
internal class EffectSection : Section<EffectControlPoint>
|
|
{
|
|
private LabelledSwitchButton kiai;
|
|
private LabelledSwitchButton omitBarLine;
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
Flow.AddRange(new[]
|
|
{
|
|
kiai = new LabelledSwitchButton { Label = "Kiai Time" },
|
|
omitBarLine = new LabelledSwitchButton { Label = "Skip Bar Line" },
|
|
});
|
|
}
|
|
|
|
protected override void OnControlPointChanged(ValueChangedEvent<EffectControlPoint> point)
|
|
{
|
|
if (point.NewValue != null)
|
|
{
|
|
kiai.Current = point.NewValue.KiaiModeBindable;
|
|
omitBarLine.Current = point.NewValue.OmitFirstBarLineBindable;
|
|
}
|
|
}
|
|
|
|
protected override EffectControlPoint CreatePoint()
|
|
{
|
|
var reference = Beatmap.Value.Beatmap.ControlPointInfo.EffectPointAt(SelectedGroup.Value.Time);
|
|
|
|
return new EffectControlPoint
|
|
{
|
|
KiaiMode = reference.KiaiMode,
|
|
OmitFirstBarLine = reference.OmitFirstBarLine
|
|
};
|
|
}
|
|
}
|
|
}
|