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-10-03 13:35:26 +08:00
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
2020-12-04 19:21:53 +08:00
|
|
|
using osu.Game.Rulesets.Osu.Skinning.Default;
|
2018-11-20 15:51:59 +08:00
|
|
|
using osuTK;
|
2018-10-03 13:35:26 +08:00
|
|
|
|
2018-11-07 15:08:56 +08:00
|
|
|
namespace osu.Game.Rulesets.Osu.Edit.Blueprints.HitCircles.Components
|
2018-10-03 13:35:26 +08:00
|
|
|
{
|
2019-09-27 17:45:22 +08:00
|
|
|
public class HitCirclePiece : BlueprintPiece<HitCircle>
|
2018-10-03 13:35:26 +08:00
|
|
|
{
|
2019-09-27 17:45:22 +08:00
|
|
|
public HitCirclePiece()
|
2018-10-03 13:35:26 +08:00
|
|
|
{
|
|
|
|
Origin = Anchor.Centre;
|
|
|
|
|
2019-07-18 14:59:22 +08:00
|
|
|
Size = new Vector2(OsuHitObject.OBJECT_RADIUS * 2);
|
2019-11-22 18:49:20 +08:00
|
|
|
|
2018-10-03 13:35:26 +08:00
|
|
|
CornerRadius = Size.X / 2;
|
2019-11-22 18:49:20 +08:00
|
|
|
CornerExponent = 2;
|
2018-10-03 13:35:26 +08:00
|
|
|
|
2018-10-25 17:16:25 +08:00
|
|
|
InternalChild = new RingPiece();
|
2018-10-03 13:35:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
{
|
|
|
|
Colour = colours.Yellow;
|
2019-09-27 17:00:24 +08:00
|
|
|
}
|
|
|
|
|
2019-09-27 17:45:22 +08:00
|
|
|
public override void UpdateFrom(HitCircle hitObject)
|
2019-09-27 17:00:24 +08:00
|
|
|
{
|
2019-09-27 17:45:22 +08:00
|
|
|
base.UpdateFrom(hitObject);
|
2018-10-25 17:16:25 +08:00
|
|
|
|
2019-09-27 17:45:22 +08:00
|
|
|
Scale = new Vector2(hitObject.Scale);
|
2018-10-03 13:35:26 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|