EditorBeatmap.SelectedHitObjects -> SelectedItems (same thing)

This commit is contained in:
ekrctb 2021-07-22 16:52:47 +09:00
parent cc01b9e639
commit dc90e4d24c

View File

@ -30,7 +30,7 @@ namespace osu.Game.Rulesets.Catch.Edit
Vector2 targetPosition = HitObjectContainer.ToLocalSpace(blueprint.ScreenSpaceSelectionPoint + moveEvent.ScreenSpaceDelta); Vector2 targetPosition = HitObjectContainer.ToLocalSpace(blueprint.ScreenSpaceSelectionPoint + moveEvent.ScreenSpaceDelta);
float deltaX = targetPosition.X - originalPosition.X; float deltaX = targetPosition.X - originalPosition.X;
deltaX = limitMovement(deltaX, EditorBeatmap.SelectedHitObjects); deltaX = limitMovement(deltaX, SelectedItems);
if (deltaX == 0) if (deltaX == 0)
{ {
@ -54,7 +54,7 @@ namespace osu.Game.Rulesets.Catch.Edit
public override bool HandleFlip(Direction direction) public override bool HandleFlip(Direction direction)
{ {
var selectionRange = CatchHitObjectUtils.GetPositionRange(EditorBeatmap.SelectedHitObjects); var selectionRange = CatchHitObjectUtils.GetPositionRange(SelectedItems);
bool changed = false; bool changed = false;
EditorBeatmap.PerformOnSelection(h => EditorBeatmap.PerformOnSelection(h =>
@ -69,8 +69,8 @@ namespace osu.Game.Rulesets.Catch.Edit
{ {
base.OnSelectionChanged(); base.OnSelectionChanged();
var selectionRange = CatchHitObjectUtils.GetPositionRange(EditorBeatmap.SelectedHitObjects); var selectionRange = CatchHitObjectUtils.GetPositionRange(SelectedItems);
SelectionBox.CanFlipX = selectionRange.Length > 0 && EditorBeatmap.SelectedHitObjects.Any(h => h is CatchHitObject && !(h is BananaShower)); SelectionBox.CanFlipX = selectionRange.Length > 0 && SelectedItems.Any(h => h is CatchHitObject && !(h is BananaShower));
} }
/// <summary> /// <summary>