mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 08:49:59 +09:00
Fix newlines/spaces
This commit is contained in:
@ -304,8 +304,8 @@ namespace osu.Game.Rulesets.Osu.Tests.Editor
|
|||||||
addMovementStep(new Vector2(61.382935f, 6.423767f));
|
addMovementStep(new Vector2(61.382935f, 6.423767f));
|
||||||
addClickStep(MouseButton.Left);
|
addClickStep(MouseButton.Left);
|
||||||
|
|
||||||
addMovementStep(new Vector2(217.69522f, 22.84021f)); // Should convert to bezier
|
addMovementStep(new Vector2(217.69522f, 22.84021f)); // Should convert to bezier
|
||||||
addMovementStep(new Vector2(210.0f, 30.0f)); // Should convert back to perfect
|
addMovementStep(new Vector2(210.0f, 30.0f)); // Should convert back to perfect
|
||||||
addClickStep(MouseButton.Right);
|
addClickStep(MouseButton.Right);
|
||||||
|
|
||||||
assertPlaced(true);
|
assertPlaced(true);
|
||||||
|
@ -58,6 +58,7 @@ namespace osu.Game.Rulesets.Objects
|
|||||||
c.Changed += invalidate;
|
c.Changed += invalidate;
|
||||||
c.Changed += updatePathTypes;
|
c.Changed += updatePathTypes;
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case NotifyCollectionChangedAction.Reset:
|
case NotifyCollectionChangedAction.Reset:
|
||||||
@ -67,6 +68,7 @@ namespace osu.Game.Rulesets.Objects
|
|||||||
c.Changed -= invalidate;
|
c.Changed -= invalidate;
|
||||||
c.Changed -= updatePathTypes;
|
c.Changed -= updatePathTypes;
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user