1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 04:07:26 +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.

46 lines
1.4 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-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 partial 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();
protected override Container<Drawable> Content => content;
2018-10-25 17:48:11 +08:00
private readonly Container content;
protected SelectionBlueprintTestScene()
2018-10-25 17:48:11 +08:00
{
base.Content.AddRange(new Drawable[]
2018-10-25 17:48:11 +08:00
{
editorClock,
content = new Container
{
Clock = new FramedClock(new StopwatchClock()),
RelativeSizeAxes = Axes.Both
}
2018-10-25 17:48:11 +08:00
});
}
protected void AddBlueprint(HitObjectSelectionBlueprint blueprint, 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
}
}
}