2019-01-24 16:43:03 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2020-04-15 17:44:12 +08:00
|
|
|
using osu.Framework.Allocation;
|
2017-05-16 11:50:30 +08:00
|
|
|
using osu.Framework.Graphics;
|
2020-04-15 17:44:12 +08:00
|
|
|
using osu.Game.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2020-12-07 11:30:25 +08:00
|
|
|
namespace osu.Game.Rulesets.Taiko.Skinning.Default
|
2017-04-05 09:01:40 +08:00
|
|
|
{
|
|
|
|
public class ElongatedCirclePiece : CirclePiece
|
|
|
|
{
|
2017-08-03 18:49:50 +08:00
|
|
|
public ElongatedCirclePiece()
|
2017-04-05 09:01:40 +08:00
|
|
|
{
|
2017-08-03 12:23:12 +08:00
|
|
|
RelativeSizeAxes = Axes.Y;
|
2017-04-05 09:01:40 +08:00
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2020-04-15 17:44:12 +08:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
{
|
|
|
|
AccentColour = colours.YellowDark;
|
|
|
|
}
|
|
|
|
|
2017-04-05 09:01:40 +08:00
|
|
|
protected override void Update()
|
|
|
|
{
|
|
|
|
base.Update();
|
2017-08-08 15:01:18 +08:00
|
|
|
Width = Parent.DrawSize.X + DrawHeight;
|
2017-04-05 09:01:40 +08:00
|
|
|
}
|
|
|
|
}
|
2017-04-21 12:45:11 +08:00
|
|
|
}
|