osu/osu.Game/GameModes/Play/Taiko/TaikoPlayfield.cs

40 lines
1.1 KiB
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 osu.Framework.Graphics.Sprites;
using OpenTK;
using OpenTK.Graphics;
namespace osu.Game.GameModes.Play.Taiko
{
public class TaikoPlayfield : Playfield
2016-09-02 10:58:57 +00:00
{
public TaikoPlayfield()
{
RelativeSizeAxes = Axes.X;
2016-09-02 10:58:57 +00:00
Size = new Vector2(1, 100);
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
}
public override void Load()
{
base.Load();
Add(new Box { RelativeSizeAxes = Axes.Both, Alpha = 0.5f });
2016-09-02 10:58:57 +00:00
2016-09-21 04:12:05 +00:00
Add(new Sprite
2016-09-02 10:58:57 +00:00
{
Texture = Game.Textures.Get(@"Menu/logo"),
2016-09-02 10:58:57 +00:00
Origin = Anchor.Centre,
2016-09-10 17:27:42 +00:00
Scale = new Vector2(0.2f),
RelativePositionAxes = Axes.Both,
2016-09-02 10:58:57 +00:00
Position = new Vector2(0.1f, 0.5f),
Colour = Color4.Gray
});
}
}
}