mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 17:37:50 +08:00
43 lines
1.2 KiB
C#
43 lines
1.2 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 NUnit.Framework;
|
|
using osu.Framework.Allocation;
|
|
using osu.Game.Rulesets.Edit;
|
|
using osu.Game.Rulesets.Osu;
|
|
using osu.Game.Screens.Edit;
|
|
using osu.Game.Screens.Edit.Timing;
|
|
|
|
namespace osu.Game.Tests.Visual.Editing
|
|
{
|
|
[TestFixture]
|
|
public class TestSceneTimingScreen : EditorClockTestScene
|
|
{
|
|
[Cached(typeof(EditorBeatmap))]
|
|
[Cached(typeof(IBeatSnapProvider))]
|
|
private readonly EditorBeatmap editorBeatmap;
|
|
|
|
protected override bool ScrollUsingMouseWheel => false;
|
|
|
|
public TestSceneTimingScreen()
|
|
{
|
|
editorBeatmap = new EditorBeatmap(CreateBeatmap(new OsuRuleset().RulesetInfo));
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
Beatmap.Value = CreateWorkingBeatmap(editorBeatmap.PlayableBeatmap);
|
|
Beatmap.Disabled = true;
|
|
|
|
Child = new TimingScreen();
|
|
}
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
{
|
|
Beatmap.Disabled = false;
|
|
base.Dispose(isDisposing);
|
|
}
|
|
}
|
|
}
|