1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 04:07:25 +08:00
osu-lazer/osu.Game/Screens/Edit/Components/CircularButton.cs

26 lines
632 B
C#
Raw Normal View History

// 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-07-20 19:02:02 +08:00
using osu.Game.Graphics.UserInterface;
2018-11-20 15:51:59 +08:00
using osuTK;
2018-07-20 19:02:02 +08:00
2018-08-15 15:47:20 +08:00
namespace osu.Game.Screens.Edit.Components
2018-07-20 19:02:02 +08:00
{
2018-08-15 15:47:20 +08:00
public class CircularButton : OsuButton
2018-07-20 19:02:02 +08:00
{
2018-07-31 15:44:20 +08:00
private const float width = 125;
private const float height = 30;
2018-07-20 19:02:02 +08:00
2018-08-15 15:47:20 +08:00
public CircularButton()
2018-07-20 19:02:02 +08:00
{
2018-07-31 15:44:20 +08:00
Size = new Vector2(width, height);
2018-07-20 19:02:02 +08:00
}
protected override void Update()
2018-07-20 19:02:02 +08:00
{
base.Update();
Content.CornerRadius = DrawHeight / 2f;
2018-07-20 19:02:02 +08:00
}
}
}