1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 00:47:26 +08:00
osu-lazer/osu.Game.Rulesets.Mania/Edit/Blueprints/NotePlacementBlueprint.cs

31 lines
826 B
C#
Raw Normal View History

// 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-11-12 17:24:18 +08:00
using osu.Framework.Graphics;
using osu.Game.Rulesets.Mania.Edit.Blueprints.Components;
using osu.Game.Rulesets.Mania.Objects;
namespace osu.Game.Rulesets.Mania.Edit.Blueprints
{
public class NotePlacementBlueprint : ManiaPlacementBlueprint<Note>
2018-11-12 17:24:18 +08:00
{
public NotePlacementBlueprint()
: base(new Note())
{
Origin = Anchor.Centre;
AutoSizeAxes = Axes.Y;
InternalChild = new EditNotePiece { RelativeSizeAxes = Axes.X };
}
2018-11-13 13:13:29 +08:00
protected override void Update()
2018-11-12 17:24:18 +08:00
{
2018-11-13 13:13:29 +08:00
base.Update();
2018-11-19 17:40:16 +08:00
Width = SnappedWidth;
2018-11-13 13:13:29 +08:00
Position = SnappedMousePosition;
2018-11-12 17:24:18 +08:00
}
}
}