1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 18:27:26 +08:00
osu-lazer/osu.Game/GameModes/Play/Osu/OsuPlayfield.cs

40 lines
1.1 KiB
C#
Raw Normal View History

2016-09-02 18:58:57 +08:00
//Copyright (c) 2007-2016 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.Containers;
using OpenTK;
2016-10-10 16:17:26 +08:00
using osu.Framework;
2016-10-16 20:10:06 +08:00
using osu.Framework.Graphics.Sprites;
using OpenTK.Graphics;
2016-09-02 18:58:57 +08:00
namespace osu.Game.GameModes.Play.Osu
{
public class OsuPlayfield : Playfield
2016-09-02 18:58:57 +08:00
{
2016-11-02 13:07:20 +08:00
protected override Container Content => hitObjectContainer;
private Container hitObjectContainer;
2016-09-02 18:58:57 +08:00
public OsuPlayfield()
{
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
2016-11-02 13:07:20 +08:00
Size = new Vector2(512, 384);
2016-09-02 18:58:57 +08:00
2016-11-02 13:07:20 +08:00
AddInternal(new Box
2016-09-02 19:07:27 +08:00
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
RelativeSizeAxes = Axes.Both,
Colour = Color4.Black,
2016-09-02 19:07:27 +08:00
Alpha = 0.5f
});
2016-11-02 13:07:20 +08:00
AddInternal(hitObjectContainer = new Container
{
RelativeSizeAxes = Axes.Both
});
2016-09-02 18:58:57 +08:00
}
}
}