mirror of
https://github.com/ppy/osu.git
synced 2026-05-21 03:39:53 +08:00
Account for anchor when dragging MusicController (fixes VisualTest).
This commit is contained in:
@@ -179,7 +179,9 @@ namespace osu.Game.Overlays
|
||||
protected override bool OnDrag(InputState state)
|
||||
{
|
||||
Vector2 change = (state.Mouse.Position - state.Mouse.PositionMouseDown.Value);
|
||||
change.X = -change.X;
|
||||
|
||||
if ((Anchor & Anchor.x2) > 0)
|
||||
change.X = -change.X;
|
||||
|
||||
change *= (float)Math.Pow(change.Length, 0.7f) / change.Length;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user