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