1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-08 02:47:20 +08:00

40 lines
1.1 KiB
C#
Raw Normal View History

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