osu/osu.Game.Rulesets.Taiko/Objects/Drawables/Pieces/SwellSymbolPiece.cs

46 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
2017-08-03 06:27:45 +00:00
using System;
using OpenTK;
using osu.Framework.Graphics;
2017-08-03 06:27:45 +00:00
using osu.Framework.Graphics.Containers;
2017-04-04 03:38:55 +00:00
using osu.Game.Graphics;
2017-04-18 07:05:58 +00:00
namespace osu.Game.Rulesets.Taiko.Objects.Drawables.Pieces
{
/// <summary>
/// The symbol used for swell pieces.
/// </summary>
2017-08-03 06:27:45 +00:00
public class SwellSymbolPiece : Container
{
2017-08-03 06:27:45 +00:00
private readonly TextAwesome symbol;
public SwellSymbolPiece()
{
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
2017-08-03 04:23:12 +00:00
2017-08-03 06:27:45 +00:00
RelativeSizeAxes = Axes.Both;
Size = new Vector2(CirclePiece.SYMBOL_SIZE);
Padding = new MarginPadding(CirclePiece.SYMBOL_BORDER);
Children = new[]
{
symbol = new TextAwesome
{
Icon = FontAwesome.fa_asterisk,
UseFullGlyphHeight = true,
Shadow = false
}
};
}
2017-08-03 04:23:12 +00:00
2017-08-03 06:27:45 +00:00
protected override void Update()
{
base.Update();
symbol.TextSize = Math.Min(ChildSize.X, ChildSize.Y);
}
}
}