1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 23:27:25 +08:00

32 lines
931 B
C#
Raw Normal View History

2020-11-26 14:36:42 +09: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.
using osu.Framework.Graphics;
using osu.Framework.Graphics.Shapes;
2020-12-07 12:35:24 +09:00
using osu.Game.Rulesets.Catch.Objects;
2020-11-26 14:36:42 +09:00
using osuTK;
using osuTK.Graphics;
2020-12-07 12:35:24 +09:00
namespace osu.Game.Rulesets.Catch.Skinning.Default
2020-11-26 14:36:42 +09:00
{
2022-11-24 14:32:20 +09:00
public partial class BorderPiece : Circle
2020-11-26 14:36:42 +09:00
{
public BorderPiece()
{
Size = new Vector2(CatchHitObject.OBJECT_RADIUS * 2);
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
BorderColour = Color4.White;
BorderThickness = 6f * FruitPiece.RADIUS_ADJUST;
// Border is drawn only when there is a child drawable.
Child = new Box
{
AlwaysPresent = true,
Alpha = 0,
RelativeSizeAxes = Axes.Both,
};
}
}
}