1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 06:07:25 +08:00
osu-lazer/osu.Game/Tests/Visual/SelectionBlueprintTestScene.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.3 KiB
C#
Raw Normal View History

// 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.
2018-10-25 17:48:11 +08:00
2022-06-17 15:37:17 +08:00
#nullable disable
using JetBrains.Annotations;
2022-05-13 20:39:54 +08:00
using osu.Framework.Allocation;
2018-10-25 17:48:11 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Timing;
using osu.Game.Rulesets.Edit;
using osu.Game.Rulesets.Objects.Drawables;
2022-05-13 20:39:54 +08:00
using osu.Game.Screens.Edit;
2018-10-25 17:48:11 +08:00
namespace osu.Game.Tests.Visual
{
public abstract class SelectionBlueprintTestScene : OsuManualInputManagerTestScene
2018-10-25 17:48:11 +08:00
{
2022-05-13 20:39:54 +08:00
[Cached]
private readonly EditorClock editorClock = new EditorClock();
2018-10-25 17:48:11 +08:00
protected override Container<Drawable> Content => content ?? base.Content;
private readonly Container content;
protected SelectionBlueprintTestScene()
2018-10-25 17:48:11 +08:00
{
base.Content.Add(content = new Container
{
Clock = new FramedClock(new StopwatchClock()),
RelativeSizeAxes = Axes.Both
});
}
protected void AddBlueprint(HitObjectSelectionBlueprint blueprint, [CanBeNull] DrawableHitObject drawableObject = null)
2018-10-25 17:48:11 +08:00
{
Add(blueprint.With(d =>
{
2021-05-18 13:26:26 +08:00
d.DrawableObject = drawableObject;
d.Depth = float.MinValue;
d.Select();
}));
2018-10-25 17:48:11 +08:00
}
}
}