2023-06-23 01:37:25 +09:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 17:43:03 +09:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-10-03 14:35:26 +09:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
2020-12-04 20:21:53 +09:00
|
|
|
|
using osu.Game.Rulesets.Osu.Skinning.Default;
|
2018-11-20 16:51:59 +09:00
|
|
|
|
using osuTK;
|
2018-10-03 14:35:26 +09:00
|
|
|
|
|
2018-11-07 16:08:56 +09:00
|
|
|
|
namespace osu.Game.Rulesets.Osu.Edit.Blueprints.HitCircles.Components
|
2018-10-03 14:35:26 +09:00
|
|
|
|
{
|
2022-11-24 14:32:20 +09:00
|
|
|
|
public partial class HitCirclePiece : BlueprintPiece<HitCircle>
|
2018-10-03 14:35:26 +09:00
|
|
|
|
{
|
2019-09-27 18:45:22 +09:00
|
|
|
|
public HitCirclePiece()
|
2018-10-03 14:35:26 +09:00
|
|
|
|
{
|
|
|
|
|
Origin = Anchor.Centre;
|
|
|
|
|
|
2019-07-18 15:59:22 +09:00
|
|
|
|
Size = new Vector2(OsuHitObject.OBJECT_RADIUS * 2);
|
2019-11-22 19:49:20 +09:00
|
|
|
|
|
2018-10-03 14:35:26 +09:00
|
|
|
|
CornerRadius = Size.X / 2;
|
2019-11-22 19:49:20 +09:00
|
|
|
|
CornerExponent = 2;
|
2018-10-03 14:35:26 +09:00
|
|
|
|
|
2018-10-25 18:16:25 +09:00
|
|
|
|
InternalChild = new RingPiece();
|
2018-10-03 14:35:26 +09:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
|
{
|
|
|
|
|
Colour = colours.Yellow;
|
2019-09-27 18:00:24 +09:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-27 18:45:22 +09:00
|
|
|
|
public override void UpdateFrom(HitCircle hitObject)
|
2019-09-27 18:00:24 +09:00
|
|
|
|
{
|
2019-09-27 18:45:22 +09:00
|
|
|
|
base.UpdateFrom(hitObject);
|
2018-10-25 18:16:25 +09:00
|
|
|
|
|
2019-09-27 18:45:22 +09:00
|
|
|
|
Scale = new Vector2(hitObject.Scale);
|
2018-10-03 14:35:26 +09:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|