mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 00:40:09 +09: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)
|
protected override bool OnDrag(InputState state)
|
||||||
{
|
{
|
||||||
Vector2 change = (state.Mouse.Position - state.Mouse.PositionMouseDown.Value);
|
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;
|
change *= (float)Math.Pow(change.Length, 0.7f) / change.Length;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user