mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
55 lines
1.9 KiB
C#
55 lines
1.9 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 System;
|
|
using System.Collections.Generic;
|
|
using OpenTK;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Timing;
|
|
using osu.Game.Rulesets.Edit.Layers.Selection;
|
|
using osu.Game.Rulesets.Osu.Edit;
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables;
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
{
|
|
public class TestCaseEditorSelectionLayer : OsuTestCase
|
|
{
|
|
public override IReadOnlyList<Type> RequiredTypes => new[] { typeof(SelectionLayer) };
|
|
|
|
public TestCaseEditorSelectionLayer()
|
|
{
|
|
var playfield = new OsuEditPlayfield
|
|
{
|
|
new DrawableHitCircle(new HitCircle { Position = new Vector2(256, 192), Scale = 0.5f }),
|
|
new DrawableHitCircle(new HitCircle { Position = new Vector2(344, 148), Scale = 0.5f }),
|
|
new DrawableSlider(new Slider
|
|
{
|
|
ControlPoints = new List<Vector2>
|
|
{
|
|
new Vector2(128, 256),
|
|
new Vector2(344, 256),
|
|
},
|
|
Distance = 400,
|
|
Position = new Vector2(128, 256),
|
|
Velocity = 1,
|
|
TickDistance = 100,
|
|
Scale = 0.5f
|
|
})
|
|
};
|
|
|
|
Children = new Drawable[]
|
|
{
|
|
new Container
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Clock = new FramedClock(new StopwatchClock()),
|
|
Child = playfield
|
|
},
|
|
new SelectionLayer(playfield)
|
|
};
|
|
}
|
|
}
|
|
}
|