1
0
mirror of https://github.com/ppy/osu.git synced 2024-10-01 12:37:38 +08:00
osu-lazer/osu.Game/Screens/Edit/Components/Timelines/Summary/Parts/PreviewTimePart.cs
2022-12-16 01:03:30 +09:00

32 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.Allocation;
using osu.Framework.Bindables;
using osu.Game.Graphics;
using osu.Game.Screens.Edit.Components.Timelines.Summary.Visualisations;
namespace osu.Game.Screens.Edit.Components.Timelines.Summary.Parts
{
public partial class PreviewTimePart : TimelinePart
{
protected override void LoadBeatmap(EditorBeatmap beatmap)
{
base.LoadBeatmap(beatmap);
Add(new PreviewTimeVisualisation(beatmap.PreviewTime));
}
private partial class PreviewTimeVisualisation : PointVisualisation
{
public PreviewTimeVisualisation(BindableInt time)
: base(time.Value)
{
time.BindValueChanged(s => X = s.NewValue);
}
[BackgroundDependencyLoader]
private void load(OsuColour colours) => Colour = colours.Lime;
}
}
}