1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 09:47:22 +08:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
691 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 14:02:02 +03:00
2022-06-17 16:37:17 +09:00
#nullable disable
using osu.Game.Graphics.UserInterface;
2018-11-20 16:51:59 +09:00
using osuTK;
2018-07-20 14:02:02 +03:00
2018-08-15 16:47:20 +09:00
namespace osu.Game.Screens.Edit.Components
2018-07-20 14:02:02 +03:00
{
2018-08-15 16:47:20 +09:00
public class CircularButton : OsuButton
2018-07-20 14:02:02 +03:00
{
2018-07-31 16:44:20 +09:00
private const float width = 125;
private const float height = 30;
2018-07-20 14:02:02 +03:00
2018-08-15 16:47:20 +09:00
public CircularButton()
2018-07-20 14:02:02 +03:00
{
2018-07-31 16:44:20 +09:00
Size = new Vector2(width, height);
2018-07-20 14:02:02 +03:00
}
protected override void Update()
2018-07-20 14:02:02 +03:00
{
base.Update();
Content.CornerRadius = DrawHeight / 2f;
2019-11-22 19:49:20 +09:00
Content.CornerExponent = 2;
2018-07-20 14:02:02 +03:00
}
}
}