mirror of
https://github.com/osukey/osukey.git
synced 2025-08-06 16:13:57 +09:00
Apply some simple fixes
This commit is contained in:
@ -4,7 +4,6 @@
|
|||||||
using osu.Framework.Allocation;
|
using osu.Framework.Allocation;
|
||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
using osu.Framework.Input.Events;
|
using osu.Framework.Input.Events;
|
||||||
using osu.Framework.Threading;
|
|
||||||
using osu.Game.Rulesets.Edit;
|
using osu.Game.Rulesets.Edit;
|
||||||
using osu.Game.Rulesets.Mania.Objects;
|
using osu.Game.Rulesets.Mania.Objects;
|
||||||
using osu.Game.Rulesets.Mania.UI;
|
using osu.Game.Rulesets.Mania.UI;
|
||||||
@ -13,7 +12,7 @@ using OpenTK;
|
|||||||
|
|
||||||
namespace osu.Game.Rulesets.Mania.Edit.Blueprints
|
namespace osu.Game.Rulesets.Mania.Edit.Blueprints
|
||||||
{
|
{
|
||||||
public class ManiaPlacementBlueprint<T> : PlacementBlueprint
|
public abstract class ManiaPlacementBlueprint<T> : PlacementBlueprint
|
||||||
where T : ManiaHitObject
|
where T : ManiaHitObject
|
||||||
{
|
{
|
||||||
protected new T HitObject => (T)base.HitObject;
|
protected new T HitObject => (T)base.HitObject;
|
||||||
@ -29,24 +28,13 @@ namespace osu.Game.Rulesets.Mania.Edit.Blueprints
|
|||||||
[Resolved]
|
[Resolved]
|
||||||
private IScrollingInfo scrollingInfo { get; set; }
|
private IScrollingInfo scrollingInfo { get; set; }
|
||||||
|
|
||||||
public ManiaPlacementBlueprint(T hitObject)
|
protected ManiaPlacementBlueprint(T hitObject)
|
||||||
: base(hitObject)
|
: base(hitObject)
|
||||||
{
|
{
|
||||||
RelativeSizeAxes = Axes.None;
|
RelativeSizeAxes = Axes.None;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override bool OnMouseMove(MouseMoveEvent e)
|
protected override bool OnMouseMove(MouseMoveEvent e)
|
||||||
{
|
|
||||||
updateSnappedPosition(e);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
private ScheduledDelegate scheduledSnappedPositionUpdate;
|
|
||||||
|
|
||||||
private void updateSnappedPosition(MouseMoveEvent e)
|
|
||||||
{
|
|
||||||
scheduledSnappedPositionUpdate?.Cancel();
|
|
||||||
scheduledSnappedPositionUpdate = Schedule(() =>
|
|
||||||
{
|
{
|
||||||
Column column = ColumnAt(e.ScreenSpaceMousePosition);
|
Column column = ColumnAt(e.ScreenSpaceMousePosition);
|
||||||
if (column == null)
|
if (column == null)
|
||||||
@ -57,7 +45,8 @@ namespace osu.Game.Rulesets.Mania.Edit.Blueprints
|
|||||||
var parentPos = Parent.ToLocalSpace(column.ToScreenSpace(new Vector2(column.DrawWidth / 2, 0)));
|
var parentPos = Parent.ToLocalSpace(column.ToScreenSpace(new Vector2(column.DrawWidth / 2, 0)));
|
||||||
SnappedMousePosition = new Vector2(parentPos.X, e.MousePosition.Y);
|
SnappedMousePosition = new Vector2(parentPos.X, e.MousePosition.Y);
|
||||||
}
|
}
|
||||||
});
|
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected double TimeAt(Vector2 screenSpacePosition)
|
protected double TimeAt(Vector2 screenSpacePosition)
|
||||||
|
Reference in New Issue
Block a user