2021-06-22 09:39:32 +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.
|
|
|
|
|
2021-06-22 11:04:24 +08:00
|
|
|
using osu.Game.Rulesets.Catch.Edit.Blueprints.Components;
|
2021-06-22 09:39:32 +08:00
|
|
|
using osu.Game.Rulesets.Catch.Objects;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.Edit.Blueprints
|
|
|
|
{
|
|
|
|
public class FruitSelectionBlueprint : CatchSelectionBlueprint<Fruit>
|
|
|
|
{
|
2021-06-22 11:04:24 +08:00
|
|
|
private readonly FruitOutline outline;
|
|
|
|
|
2021-06-22 09:39:32 +08:00
|
|
|
public FruitSelectionBlueprint(Fruit hitObject)
|
|
|
|
: base(hitObject)
|
|
|
|
{
|
2021-06-22 11:04:24 +08:00
|
|
|
InternalChild = outline = new FruitOutline();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void Update()
|
|
|
|
{
|
|
|
|
base.Update();
|
|
|
|
|
2021-07-19 12:33:46 +08:00
|
|
|
if (!IsSelected) return;
|
|
|
|
|
|
|
|
outline.Position = CatchHitObjectUtils.GetStartPosition(HitObjectContainer, HitObject);
|
|
|
|
outline.UpdateFrom(HitObject);
|
2021-06-22 09:39:32 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|