mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 10:17:43 +08:00
37 lines
1.2 KiB
C#
37 lines
1.2 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.Bindables;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Edit.Blueprints
|
|
{
|
|
/// <summary>
|
|
/// A piece of a blueprint which responds to changes in the state of a <see cref="OsuHitObject"/>.
|
|
/// </summary>
|
|
public abstract class HitObjectPiece : CompositeDrawable
|
|
{
|
|
protected readonly IBindable<Vector2> PositionBindable = new Bindable<Vector2>();
|
|
protected readonly IBindable<int> StackHeightBindable = new Bindable<int>();
|
|
protected readonly IBindable<float> ScaleBindable = new Bindable<float>();
|
|
|
|
private readonly OsuHitObject hitObject;
|
|
|
|
protected HitObjectPiece(OsuHitObject hitObject)
|
|
{
|
|
this.hitObject = hitObject;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
PositionBindable.BindTo(hitObject.PositionBindable);
|
|
StackHeightBindable.BindTo(hitObject.StackHeightBindable);
|
|
ScaleBindable.BindTo(hitObject.ScaleBindable);
|
|
}
|
|
}
|
|
}
|