mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 06:37:50 +08:00
41 lines
1.0 KiB
C#
41 lines
1.0 KiB
C#
// 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.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
using osu.Game.Rulesets.Osu.Skinning.Default;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Edit.Blueprints.HitCircles.Components
|
|
{
|
|
public class HitCirclePiece : BlueprintPiece<HitCircle>
|
|
{
|
|
public HitCirclePiece()
|
|
{
|
|
Origin = Anchor.Centre;
|
|
|
|
Size = new Vector2(OsuHitObject.OBJECT_RADIUS * 2);
|
|
|
|
CornerRadius = Size.X / 2;
|
|
CornerExponent = 2;
|
|
|
|
InternalChild = new RingPiece();
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuColour colours)
|
|
{
|
|
Colour = colours.Yellow;
|
|
}
|
|
|
|
public override void UpdateFrom(HitCircle hitObject)
|
|
{
|
|
base.UpdateFrom(hitObject);
|
|
|
|
Scale = new Vector2(hitObject.Scale);
|
|
}
|
|
}
|
|
}
|