osu/osu.Game/GameModes/Play/Osu/OsuPlayfield.cs

34 lines
906 B
C#
Raw Normal View History

2016-09-02 10:58:57 +00: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 osu.Framework.Graphics.Drawables;
using OpenTK;
namespace osu.Game.GameModes.Play.Osu
{
public class OsuPlayfield : Playfield
2016-09-02 10:58:57 +00:00
{
public OsuPlayfield()
{
RelativeSizeAxes = Axes.None;
2016-09-02 10:58:57 +00:00
Size = new Vector2(512, 384);
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
}
public override void Load()
{
base.Load();
2016-09-02 11:07:27 +00:00
Add(new Box()
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
RelativeSizeAxes = Axes.Both,
2016-09-02 11:07:27 +00:00
Alpha = 0.5f
});
2016-09-02 10:58:57 +00:00
}
}
}