mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 07:27:25 +08:00
41 lines
1.4 KiB
C#
41 lines
1.4 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.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Beatmaps.ControlPoints;
|
|
using osu.Game.Rulesets.Mania.Edit.Blueprints;
|
|
using osu.Game.Rulesets.Mania.Objects;
|
|
using osu.Game.Rulesets.Mania.Objects.Drawables;
|
|
using osu.Game.Rulesets.UI.Scrolling;
|
|
using osu.Game.Tests.Visual;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Rulesets.Mania.Tests
|
|
{
|
|
public class TestSceneNoteSelectionBlueprint : ManiaSelectionBlueprintTestScene
|
|
{
|
|
protected override Container<Drawable> Content => content ?? base.Content;
|
|
private readonly Container content;
|
|
|
|
public TestSceneNoteSelectionBlueprint()
|
|
{
|
|
var note = new Note { Column = 0 };
|
|
note.ApplyDefaults(new ControlPointInfo(), new BeatmapDifficulty());
|
|
|
|
DrawableNote drawableObject;
|
|
|
|
base.Content.Child = content = new ScrollingTestContainer(ScrollingDirection.Down)
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
Size = new Vector2(50, 20),
|
|
Child = drawableObject = new DrawableNote(note)
|
|
};
|
|
|
|
AddBlueprint(new NoteSelectionBlueprint(drawableObject));
|
|
}
|
|
}
|
|
}
|