2016-09-02 19:30:27 +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 osu.Framework.Graphics.Sprites;
|
|
|
|
|
using OpenTK;
|
|
|
|
|
using OpenTK.Graphics;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.GameModes.Play.Catch
|
|
|
|
|
{
|
|
|
|
|
public class CatchPlayfield : Playfield
|
|
|
|
|
{
|
|
|
|
|
public CatchPlayfield()
|
|
|
|
|
{
|
|
|
|
|
SizeMode = InheritMode.Y;
|
|
|
|
|
Size = new Vector2(512, 0.9f);
|
|
|
|
|
Anchor = Anchor.BottomCentre;
|
|
|
|
|
Origin = Anchor.BottomCentre;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void Load()
|
|
|
|
|
{
|
|
|
|
|
base.Load();
|
|
|
|
|
|
2016-09-21 12:12:05 +08:00
|
|
|
|
Add(new Box { SizeMode = InheritMode.XY, Alpha = 0.5f });
|
2016-09-02 19:30:27 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|