mirror of
https://github.com/osukey/osukey.git
synced 2025-05-30 09:57:21 +09:00
34 lines
1.1 KiB
C#
34 lines
1.1 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Configuration;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Audio;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Game.Beatmaps;
|
|
|
|
namespace osu.Game.Screens.Edit.Screens.Compose.Timeline
|
|
{
|
|
public class BeatmapWaveformGraph : CompositeDrawable
|
|
{
|
|
public readonly Bindable<WorkingBeatmap> Beatmap = new Bindable<WorkingBeatmap>();
|
|
|
|
private readonly WaveformGraph graph;
|
|
|
|
public BeatmapWaveformGraph()
|
|
{
|
|
InternalChild = graph = new WaveformGraph { RelativeSizeAxes = Axes.Both };
|
|
Beatmap.ValueChanged += b => graph.Waveform = b.Waveform;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the <see cref="WaveformGraph.Resolution"/>.
|
|
/// </summary>
|
|
public float Resolution
|
|
{
|
|
get { return graph.Resolution; }
|
|
set { graph.Resolution = value; }
|
|
}
|
|
}
|
|
}
|