1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 00:07:24 +08:00
osu-lazer/osu.Game.Modes.Taiko/UI/TaikoPlayfield.cs

42 lines
1.3 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-09-02 18:58:57 +08:00
2016-11-14 16:23:33 +08:00
using osu.Framework.Allocation;
2016-09-02 18:58:57 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
2016-11-14 16:23:33 +08:00
using osu.Framework.Graphics.Textures;
2017-03-06 12:59:11 +08:00
using osu.Game.Modes.Taiko.Objects;
2016-11-14 17:54:24 +08:00
using osu.Game.Modes.UI;
2016-09-02 18:58:57 +08:00
using OpenTK;
using OpenTK.Graphics;
using osu.Game.Modes.Taiko.Judgements;
2016-09-02 18:58:57 +08:00
2016-11-14 17:54:24 +08:00
namespace osu.Game.Modes.Taiko.UI
2016-09-02 18:58:57 +08:00
{
public class TaikoPlayfield : Playfield<TaikoBaseHit, TaikoJudgementInfo>
2016-09-02 18:58:57 +08:00
{
public TaikoPlayfield()
{
RelativeSizeAxes = Axes.X;
2016-09-02 18:58:57 +08:00
Size = new Vector2(1, 100);
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
}
[BackgroundDependencyLoader]
private void load(TextureStore textures)
2016-09-02 18:58:57 +08:00
{
Add(new Box { RelativeSizeAxes = Axes.Both, Alpha = 0.5f });
2016-09-02 18:58:57 +08:00
2016-09-21 12:12:05 +08:00
Add(new Sprite
2016-09-02 18:58:57 +08:00
{
2016-11-09 07:13:20 +08:00
Texture = textures.Get(@"Menu/logo"),
2016-09-02 18:58:57 +08:00
Origin = Anchor.Centre,
2016-09-11 01:27:42 +08:00
Scale = new Vector2(0.2f),
RelativePositionAxes = Axes.Both,
2016-09-02 18:58:57 +08:00
Position = new Vector2(0.1f, 0.5f),
Colour = Color4.Gray
});
}
}
}