mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 12:17:46 +08:00
32 lines
930 B
C#
32 lines
930 B
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.Framework.Graphics;
|
|
using osu.Game.Screens.Edit.Compose.Components;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Tests.Visual.Editing
|
|
{
|
|
[TestFixture]
|
|
public class TestSceneTimelineTickDisplay : TimelineTestScene
|
|
{
|
|
public override Drawable CreateTestComponent() => Empty(); // tick display is implicitly inside the timeline.
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
BeatDivisor.Value = 4;
|
|
|
|
Add(new BeatDivisorControl(BeatDivisor)
|
|
{
|
|
Anchor = Anchor.TopRight,
|
|
Origin = Anchor.TopRight,
|
|
Margin = new MarginPadding(30),
|
|
Size = new Vector2(90)
|
|
});
|
|
}
|
|
}
|
|
}
|