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-07-20 19:02:02 +08:00
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2018-07-27 17:26:37 +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
|
|
|
|
}
|
|
|
|
|
|
2018-08-01 16:47:32 +08:00
|
|
|
|
protected override void Update()
|
2018-07-20 19:02:02 +08:00
|
|
|
|
{
|
2018-08-01 16:47:32 +08:00
|
|
|
|
base.Update();
|
|
|
|
|
Content.CornerRadius = DrawHeight / 2f;
|
2019-11-22 18:49:20 +08:00
|
|
|
|
Content.CornerExponent = 2;
|
2018-07-20 19:02:02 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|