mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 23:13:34 +08:00
2cb801317d
There is no case where we use the term "Judgement" without the suffix, so deemed it unnecessary.
37 lines
1.2 KiB
C#
37 lines
1.2 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 osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Game.Modes.Mania.Objects;
|
|
using osu.Game.Modes.UI;
|
|
using OpenTK;
|
|
using OpenTK.Graphics;
|
|
using osu.Game.Modes.Mania.Judgements;
|
|
|
|
namespace osu.Game.Modes.Mania.UI
|
|
{
|
|
public class ManiaPlayfield : Playfield<ManiaBaseHit, ManiaJudgement>
|
|
{
|
|
public ManiaPlayfield(int columns)
|
|
{
|
|
RelativeSizeAxes = Axes.Both;
|
|
Size = new Vector2(columns / 20f, 1f);
|
|
Anchor = Anchor.BottomCentre;
|
|
Origin = Anchor.BottomCentre;
|
|
|
|
Add(new Box { RelativeSizeAxes = Axes.Both, Alpha = 0.5f });
|
|
|
|
for (int i = 0; i < columns; i++)
|
|
Add(new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Y,
|
|
Size = new Vector2(2, 1),
|
|
RelativePositionAxes = Axes.Both,
|
|
Position = new Vector2((float)i / columns, 0),
|
|
Alpha = 0.5f,
|
|
Colour = Color4.Black
|
|
});
|
|
}
|
|
}
|
|
} |